mirror of
https://github.com/xenia-project/FFmpeg.git
synced 2024-11-24 03:59:43 +00:00
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>
This commit is contained in:
parent
e4eaaf7bf6
commit
f18f973469
@ -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);
|
||||
|
Loading…
Reference in New Issue
Block a user