From f703c8cc0901f199455d848434d8932765dd2e5d Mon Sep 17 00:00:00 2001 From: Michael Niedermayer Date: Wed, 8 Oct 2014 16:09:31 +0200 Subject: [PATCH] avcodec/avpicture: use av_freep(), do not leave stale pointers in memory Signed-off-by: Michael Niedermayer --- libavcodec/avpicture.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/libavcodec/avpicture.c b/libavcodec/avpicture.c index a6f89ef884..0484dc3f7b 100644 --- a/libavcodec/avpicture.c +++ b/libavcodec/avpicture.c @@ -66,7 +66,7 @@ int avpicture_alloc(AVPicture *picture, void avpicture_free(AVPicture *picture) { - av_free(picture->data[0]); + av_freep(&picture->data[0]); } void av_picture_copy(AVPicture *dst, const AVPicture *src,