]> git.sesse.net Git - ffmpeg/commitdiff
fixed memory leak
authorFabrice Bellard <fabrice@bellard.org>
Thu, 20 Nov 2003 11:22:25 +0000 (11:22 +0000)
committerFabrice Bellard <fabrice@bellard.org>
Thu, 20 Nov 2003 11:22:25 +0000 (11:22 +0000)
Originally committed as revision 2525 to svn://svn.ffmpeg.org/ffmpeg/trunk

libavformat/utils.c

index 036c384bea9c891728b24f694c5d1a73beab1a8a..7cbb1a0246d0a6897cc4ceb30ce4e4b916108a55 100644 (file)
@@ -698,13 +698,11 @@ static int av_read_frame_internal(AVFormatContext *s, AVPacket *pkt)
                     return 0;
                 }
             } else {
+                /* free packet */
+                av_free_packet(&s->cur_pkt); 
                 s->cur_st = NULL;
             }
         } else {
-            /* free previous packet */
-            if (s->cur_st && s->cur_st->parser)
-                av_free_packet(&s->cur_pkt); 
-
             /* read next packet */
             ret = av_read_packet(s, &s->cur_pkt);
             if (ret < 0)