1
0
Fork 0
mirror of https://github.com/ossrs/srs.git synced 2025-03-09 15:49:59 +00:00

HttpConn: judge nb_chunk no memory address. (#3465)

Co-authored-by: john <hondaxiao@tencent.com>
This commit is contained in:
chundonglinlin 2023-03-20 12:51:02 +08:00 committed by winlin
parent 34c78a74fe
commit 2f1d0ccd34

View file

@ -1162,7 +1162,9 @@ srs_error_t SrsHttpResponseReader::read_chunked(void* data, size_t nb_data, ssiz
if (nb_chunk <= 0) {
// for the last chunk, eof.
is_eof = true;
*nb_read = 0;
if (nb_read) {
*nb_read = 0;
}
} else {
// for not the last chunk, there must always exists bytes.
// left bytes in chunk, read some.