From 8b285f03f70e884312c6c4e00a1377cfd85a3a7a Mon Sep 17 00:00:00 2001 From: Michael Niedermayer Date: Mon, 23 Dec 2013 01:53:05 +0100 Subject: [PATCH] avcodec/utils: fix memleak on avcodec_open2() failure Signed-off-by: Michael Niedermayer --- libavcodec/utils.c | 4 +++- 1 file changed, 3 insertions(+), 1 deletion(-) diff --git a/libavcodec/utils.c b/libavcodec/utils.c index b8a8d471f6..c000d27155 100644 --- a/libavcodec/utils.c +++ b/libavcodec/utils.c @@ -1477,8 +1477,10 @@ end: free_and_end: av_dict_free(&tmp); av_freep(&avctx->priv_data); - if (avctx->internal) + if (avctx->internal) { av_freep(&avctx->internal->pool); + av_frame_free(&avctx->internal->to_free); + } av_freep(&avctx->internal); avctx->codec = NULL; goto end;