From 9c712d0b1608ec998dbe41d81a79f3fb7ea32b4d Mon Sep 17 00:00:00 2001 From: Michael Niedermayer Date: Fri, 15 Aug 2014 19:48:28 +0200 Subject: vformat/utils: call flush_packet_queue() from avformat_free_context() This avoids some theoretical memleaks Signed-off-by: Michael Niedermayer --- libavformat/utils.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) (limited to 'libavformat/utils.c') diff --git a/libavformat/utils.c b/libavformat/utils.c index 34eca17ec9..b4ca342898 100644 --- a/libavformat/utils.c +++ b/libavformat/utils.c @@ -3525,7 +3525,7 @@ void avformat_free_context(AVFormatContext *s) av_dict_free(&s->metadata); av_freep(&s->streams); av_freep(&s->internal); - free_packet_buffer(&s->packet_buffer, &s->packet_buffer_end); + flush_packet_queue(s); av_free(s); } -- cgit v1.2.3