Commit 617814b4 authored by Federico Tomassetti's avatar Federico Tomassetti Committed by Vittorio Giovara

buffersrc: Fix resource leak on error

Bug-Id: CID 1267902
CC: libav-stable@libav.org
Signed-off-by: 's avatarVittorio Giovara <vittorio.giovara@gmail.com>
parent 336d2f09
......@@ -195,6 +195,7 @@ do { \
ref_out = av_buffer_create(data, data_size, compat_unref_buffer, \
dummy_ref, 0); \
if (!ref_out) { \
av_freep(&dummy_ref); \
av_frame_unref(frame); \
ret = AVERROR(ENOMEM); \
goto fail; \
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment