[FFmpeg-cvslog] avformat/utils: fix memleak with nobuffer

Michael Niedermayer git at videolan.org
Wed Aug 7 01:22:42 CEST 2013


ffmpeg | branch: master | Michael Niedermayer <michaelni at gmx.at> | Wed Aug  7 01:14:45 2013 +0200| [caa7a494817f6f28305b8581cf4f7e8ecf1ae85c] | committer: Michael Niedermayer

avformat/utils: fix memleak with nobuffer

Fixes Ticket2802

Signed-off-by: Michael Niedermayer <michaelni at gmx.at>

> http://git.videolan.org/gitweb.cgi/ffmpeg.git/?a=commit;h=caa7a494817f6f28305b8581cf4f7e8ecf1ae85c
---

 libavformat/utils.c |    6 +++---
 1 file changed, 3 insertions(+), 3 deletions(-)

diff --git a/libavformat/utils.c b/libavformat/utils.c
index f9edcca..727711b 100644
--- a/libavformat/utils.c
+++ b/libavformat/utils.c
@@ -2783,9 +2783,9 @@ int avformat_find_stream_info(AVFormatContext *ic, AVDictionary **options)
             break;
         }
 
-        if (ic->flags & AVFMT_FLAG_NOBUFFER) {
-            pkt = &pkt1;
-        } else {
+        if (ic->flags & AVFMT_FLAG_NOBUFFER)
+            free_packet_buffer(&ic->packet_buffer, &ic->packet_buffer_end);
+        {
             pkt = add_to_pktbuf(&ic->packet_buffer, &pkt1,
                                 &ic->packet_buffer_end);
             if (!pkt) {



More information about the ffmpeg-cvslog mailing list