From bc00da27010ed9e5dbe47e5b6fae3dcddb999d78 Mon Sep 17 00:00:00 2001 From: Kostya Shishkov Date: Mon, 14 May 2012 19:45:41 +0200 Subject: indeo3: when freeing buffers, set pointers referencing them to NULL as well --- libavcodec/indeo3.c | 1 + 1 file changed, 1 insertion(+) (limited to 'libavcodec/indeo3.c') diff --git a/libavcodec/indeo3.c b/libavcodec/indeo3.c index 1221ffab18..e5b2ea7ef0 100644 --- a/libavcodec/indeo3.c +++ b/libavcodec/indeo3.c @@ -209,6 +209,7 @@ static av_cold void free_frame_buffers(Indeo3DecodeContext *ctx) for (p = 0; p < 3; p++) { av_freep(&ctx->planes[p].buffers[0]); av_freep(&ctx->planes[p].buffers[1]); + ctx->planes[p].pixels[0] = ctx->planes[p].pixels[1] = 0; } } -- cgit v1.2.3