[FFmpeg-soc] [soc]: r5225 - concat/libavformat/avplaylist.c

gkovacs subversion at mplayerhq.hu
Mon Aug 24 02:19:45 CEST 2009


Author: gkovacs
Date: Mon Aug 24 02:19:44 2009
New Revision: 5225

Log:
add variable rename that was left out in previous commit

Modified:
   concat/libavformat/avplaylist.c

Modified: concat/libavformat/avplaylist.c
==============================================================================
--- concat/libavformat/avplaylist.c	Mon Aug 24 02:17:35 2009	(r5224)
+++ concat/libavformat/avplaylist.c	Mon Aug 24 02:19:44 2009	(r5225)
@@ -208,8 +208,8 @@ void av_playlist_relative_paths(char **f
         int filename_len = strlen(flist[i]);
         full_file_path = av_malloc(workingdir_len + filename_len + 2);
         av_strlcpy(full_file_path, workingdir, workingdir_len + 1);
-        fullfpath[workingdir_len] = '/';
-        fullfpath[workingdir_len + 1] = 0;
+        full_file_path[workingdir_len] = '/';
+        full_file_path[workingdir_len + 1] = 0;
         av_strlcat(full_file_path, flist[i], workingdir_len + filename_len + 2);
         if (url_exist(full_file_path))
             flist[i] = full_file_path;


More information about the FFmpeg-soc mailing list