[FFmpeg-soc] [soc]: r4653 - concat/libavformat/m3u.c

gkovacs subversion at mplayerhq.hu
Tue Jul 7 21:52:06 CEST 2009


Author: gkovacs
Date: Tue Jul  7 21:52:05 2009
New Revision: 4653

Log:
set pointer to 0 to fix av_fast_realloc

Modified:
   concat/libavformat/m3u.c

Modified: concat/libavformat/m3u.c
==============================================================================
--- concat/libavformat/m3u.c	Tue Jul  7 18:22:41 2009	(r4652)
+++ concat/libavformat/m3u.c	Tue Jul  7 21:52:05 2009	(r4653)
@@ -45,7 +45,7 @@ static int m3u_list_files(ByteIOContext 
     char **flist;
     int i, j;
     int bufsize = 0;
-    i = 0;
+    i = flist = 0;
     while (1) {
         char *q;
         char linebuf[1024] = {0};


More information about the FFmpeg-soc mailing list