diff options
author | James Almer <jamrial@gmail.com> | 2018-03-19 00:21:19 -0300 |
---|---|---|
committer | James Almer <jamrial@gmail.com> | 2018-03-20 17:39:00 -0300 |
commit | f18f9734694ea0761f94d57685f342b690d563b0 (patch) | |
tree | e6581ee4bbaeb5a64913fe639f3142b491046fdd | |
parent | e4eaaf7bf6930cd0c9a15631dfee0e235f327ba9 (diff) | |
download | ffmpeg-streaming-f18f9734694ea0761f94d57685f342b690d563b0.zip ffmpeg-streaming-f18f9734694ea0761f94d57685f342b690d563b0.tar.gz |
avcodec/mp3_header_decompress: don't free the user provided packet on error
It's owned by the caller.
Reviewed-by: Michael Niedermayer <michael@niedermayer.cc>
Signed-off-by: James Almer <jamrial@gmail.com>
-rw-r--r-- | libavcodec/mp3_header_decompress_bsf.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/libavcodec/mp3_header_decompress_bsf.c b/libavcodec/mp3_header_decompress_bsf.c index 22c1ef0..2948589 100644 --- a/libavcodec/mp3_header_decompress_bsf.c +++ b/libavcodec/mp3_header_decompress_bsf.c @@ -87,7 +87,7 @@ static int mp3_header_decompress(AVBSFContext *ctx, AVPacket *out) goto fail; ret = av_packet_copy_props(out, in); if (ret < 0) { - av_packet_free(&out); + av_packet_unref(out); goto fail; } memcpy(out->data + frame_size - buf_size, buf, buf_size + AV_INPUT_BUFFER_PADDING_SIZE); |