mirror of https://git.ffmpeg.org/ffmpeg.git
avcodec/encode: do proper cleanup on failure
Fixes the last remaining memleaks introduced by a22c6a4796
.
Signed-off-by: James Almer <jamrial@gmail.com>
This commit is contained in:
parent
ef973bd98d
commit
87e625c263
|
@ -225,9 +225,9 @@ int attribute_align_arg avcodec_encode_audio2(AVCodecContext *avctx,
|
|||
} else if (!avpkt->buf) {
|
||||
AVPacket tmp = { 0 };
|
||||
ret = av_packet_ref(&tmp, avpkt);
|
||||
if (ret < 0)
|
||||
return ret;
|
||||
av_packet_unref(avpkt);
|
||||
if (ret < 0)
|
||||
goto end;
|
||||
*avpkt = tmp;
|
||||
}
|
||||
}
|
||||
|
@ -324,9 +324,9 @@ int attribute_align_arg avcodec_encode_video2(AVCodecContext *avctx,
|
|||
} else if (!avpkt->buf) {
|
||||
AVPacket tmp = { 0 };
|
||||
ret = av_packet_ref(&tmp, avpkt);
|
||||
av_packet_unref(avpkt);
|
||||
if (ret < 0)
|
||||
return ret;
|
||||
av_packet_unref(avpkt);
|
||||
*avpkt = tmp;
|
||||
}
|
||||
}
|
||||
|
|
Loading…
Reference in New Issue