avutil/frame: Free destination qp_table_buf in frame_copy_props()
Fixes memleak Fixes: Ticket4899 Signed-off-by: Michael Niedermayer <michael@niedermayer.cc>
This commit is contained in:
parent
4c920ce777
commit
4099e4a77d
@ -357,6 +357,7 @@ FF_DISABLE_DEPRECATION_WARNINGS
|
|||||||
dst->qscale_table = NULL;
|
dst->qscale_table = NULL;
|
||||||
dst->qstride = 0;
|
dst->qstride = 0;
|
||||||
dst->qscale_type = 0;
|
dst->qscale_type = 0;
|
||||||
|
av_buffer_unref(&dst->qp_table_buf);
|
||||||
if (src->qp_table_buf) {
|
if (src->qp_table_buf) {
|
||||||
dst->qp_table_buf = av_buffer_ref(src->qp_table_buf);
|
dst->qp_table_buf = av_buffer_ref(src->qp_table_buf);
|
||||||
if (dst->qp_table_buf) {
|
if (dst->qp_table_buf) {
|
||||||
|
Loading…
x
Reference in New Issue
Block a user