diff --git a/libavcodec/ffv1.c b/libavcodec/ffv1.c index 689cd32d74..0836d42012 100644 --- a/libavcodec/ffv1.c +++ b/libavcodec/ffv1.c @@ -226,8 +226,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_free(f->slice_context[j]->sample_buffer); + av_free(f->slice_context[j]); } return AVERROR(ENOMEM); }