1
0
mirror of https://github.com/FFmpeg/FFmpeg.git synced 2025-08-10 06:10:52 +02:00

libavformat/rtmpproto: Plug leak if sending bytes read report fails.

Signed-off-by: Michael Niedermayer <michael@niedermayer.cc>
This commit is contained in:
Josh Allmann
2018-01-23 16:49:16 -08:00
committed by Michael Niedermayer
parent 4dbae00bac
commit ee88f31d34

View File

@@ -2431,8 +2431,10 @@ static int get_packet(URLContext *s, int for_header)
rt->bytes_read += ret; rt->bytes_read += ret;
if (rt->bytes_read - rt->last_bytes_read > rt->receive_report_size) { if (rt->bytes_read - rt->last_bytes_read > rt->receive_report_size) {
av_log(s, AV_LOG_DEBUG, "Sending bytes read report\n"); av_log(s, AV_LOG_DEBUG, "Sending bytes read report\n");
if ((ret = gen_bytes_read(s, rt, rpkt.timestamp + 1)) < 0) if ((ret = gen_bytes_read(s, rt, rpkt.timestamp + 1)) < 0) {
ff_rtmp_packet_destroy(&rpkt);
return ret; return ret;
}
rt->last_bytes_read = rt->bytes_read; rt->last_bytes_read = rt->bytes_read;
} }