rtmp: Plug leak if sending bytes read report fails.

Signed-off-by: Martin Storsjö <martin@martin.st>
This commit is contained in:
Josh Allmann 2018-01-23 16:47:12 -08:00 committed by Martin Storsjö
parent 85e10c0a93
commit a2a9e4eea0
1 changed files with 3 additions and 1 deletions

View File

@ -2396,8 +2396,10 @@ static int get_packet(URLContext *s, int for_header)
rt->bytes_read += ret;
if (rt->bytes_read - rt->last_bytes_read > rt->receive_report_size) {
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;
}
rt->last_bytes_read = rt->bytes_read;
}