OSDN Git Service

avcodec/ffv1: use av_freep()
authorMichael Niedermayer <michaelni@gmx.at>
Mon, 13 Apr 2015 18:05:56 +0000 (20:05 +0200)
committerMichael Niedermayer <michaelni@gmx.at>
Mon, 13 Apr 2015 18:05:56 +0000 (20:05 +0200)
Signed-off-by: Michael Niedermayer <michaelni@gmx.at>
libavcodec/ffv1.c

index 20d20cc..eb613c7 100644 (file)
@@ -148,8 +148,8 @@ av_cold int ffv1_init_slice_contexts(FFV1Context *f)
 
 memfail:
     for (j = 0; j < i; j++) {
-        av_free(&f->slice_context[j]->sample_buffer);
-        av_free(&f->slice_context[j]);
+        av_freep(&f->slice_context[j]->sample_buffer);
+        av_freep(&f->slice_context[j]);
     }
     return AVERROR(ENOMEM);
 }