[FFmpeg-cvslog] avutil/frame: Free destination qp_table_buf in frame_copy_props()
Michael Niedermayer
git at videolan.org
Wed Feb 24 16:57:05 CET 2016
ffmpeg | branch: release/2.8 | Michael Niedermayer <michael at niedermayer.cc> | Sat Feb 13 20:57:26 2016 +0100| [536f6c4ec2f823f7a9fdeea33515f4299fc864b8] | committer: Michael Niedermayer
avutil/frame: Free destination qp_table_buf in frame_copy_props()
Fixes memleak
Fixes: Ticket4899
Signed-off-by: Michael Niedermayer <michael at niedermayer.cc>
(cherry picked from commit 4099e4a77d2d49e2308415d92766ad1511f62f9a)
Signed-off-by: Michael Niedermayer <michael at niedermayer.cc>
> http://git.videolan.org/gitweb.cgi/ffmpeg.git/?a=commit;h=536f6c4ec2f823f7a9fdeea33515f4299fc864b8
---
libavutil/frame.c | 1 +
1 file changed, 1 insertion(+)
diff --git a/libavutil/frame.c b/libavutil/frame.c
index 3a84811..cb2f681 100644
--- a/libavutil/frame.c
+++ b/libavutil/frame.c
@@ -350,6 +350,7 @@ FF_ENABLE_DEPRECATION_WARNINGS
dst->qscale_table = NULL;
dst->qstride = 0;
dst->qscale_type = 0;
+ av_buffer_unref(&dst->qp_table_buf);
if (src->qp_table_buf) {
dst->qp_table_buf = av_buffer_ref(src->qp_table_buf);
if (dst->qp_table_buf) {
More information about the ffmpeg-cvslog
mailing list