diff options
author | Etienne Buira <etienne.buira.lists@free.fr> | 2011-05-26 21:02:50 +0200 |
---|---|---|
committer | Michael Niedermayer <michaelni@gmx.at> | 2011-05-27 04:37:33 +0200 |
commit | 5e0dafe8caa9ba1e87dfc51aa25ebb9fea61ed42 (patch) | |
tree | dedc1badf82f3b23660de8db6ace25b5fcb2fa23 | |
parent | 28768579aafd31acc74b6534dbc3ed91548afe83 (diff) | |
download | ffmpeg-5e0dafe8caa9ba1e87dfc51aa25ebb9fea61ed42.tar.gz |
Fix memleak
Signed-off-by: Michael Niedermayer <michaelni@gmx.at>
-rw-r--r-- | libavcodec/libx264.c | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/libavcodec/libx264.c b/libavcodec/libx264.c index a45789db62..b0cca65a7c 100644 --- a/libavcodec/libx264.c +++ b/libavcodec/libx264.c @@ -176,6 +176,7 @@ static av_cold int X264_close(AVCodecContext *avctx) av_free(x4->level); av_free(x4->stats); av_free(x4->weightp); + av_free(x4->x264opts); return 0; } |