[FFmpeg-soc] [soc]: r4823 - concat/libavformat/xspf.c

gkovacs subversion at mplayerhq.hu
Wed Jul 29 04:44:17 CEST 2009


Author: gkovacs
Date: Wed Jul 29 04:44:16 2009
New Revision: 4823

Log:
fixed wrong array initialized size

Modified:
   concat/libavformat/xspf.c

Modified: concat/libavformat/xspf.c
==============================================================================
--- concat/libavformat/xspf.c	Wed Jul 29 01:24:30 2009	(r4822)
+++ concat/libavformat/xspf.c	Wed Jul 29 04:44:16 2009	(r4823)
@@ -68,7 +68,7 @@ static int xspf_list_files(ByteIOContext
     char state;
     char **flist;
     char buf[1024];
-    char s[5];
+    char s[10];
     char t[] = "<location>";
     state = flist = buflen = i = j = 0;
     while ((c = url_fgetc(b))) {


More information about the FFmpeg-soc mailing list