Author: gkovacs
Date: Mon Aug 24 07:56:34 2009
New Revision: 5238

Log:
use av_free instead of free

Modified:
   concat/libavformat/avplaylist.c

Modified: concat/libavformat/avplaylist.c
==============================================================================
--- concat/libavformat/avplaylist.c     Mon Aug 24 07:55:16 2009        (r5237)
+++ concat/libavformat/avplaylist.c     Mon Aug 24 07:56:34 2009        (r5238)
@@ -139,7 +139,7 @@ void av_playlist_split_encodedstring(con
             sepidx[len] = ts-s;
             sepidx_tmp = av_fast_realloc(sepidx, &buflen, ++len);
             if (!sepidx_tmp) {
-                free(sepidx);
+                av_free(sepidx);
                 av_log(NULL, AV_LOG_ERROR, "av_fast_realloc error in 
av_playlist_split_encodedstring\n");
                 continue;
             } else
_______________________________________________
FFmpeg-soc mailing list
[email protected]
https://lists.mplayerhq.hu/mailman/listinfo/ffmpeg-soc

Reply via email to