HttpConn: judge nb_chunk no memory address. (#3465)
Co-authored-by: john <hondaxiao@tencent.com>
This commit is contained in:
parent
34c78a74fe
commit
2f1d0ccd34
|
|
@ -1162,7 +1162,9 @@ srs_error_t SrsHttpResponseReader::read_chunked(void* data, size_t nb_data, ssiz
|
||||||
if (nb_chunk <= 0) {
|
if (nb_chunk <= 0) {
|
||||||
// for the last chunk, eof.
|
// for the last chunk, eof.
|
||||||
is_eof = true;
|
is_eof = true;
|
||||||
*nb_read = 0;
|
if (nb_read) {
|
||||||
|
*nb_read = 0;
|
||||||
|
}
|
||||||
} else {
|
} else {
|
||||||
// for not the last chunk, there must always exists bytes.
|
// for not the last chunk, there must always exists bytes.
|
||||||
// left bytes in chunk, read some.
|
// left bytes in chunk, read some.
|
||||||
|
|
|
||||||
Loading…
Reference in New Issue
Block a user