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:
James Almer 2017-10-03 11:49:18 -03:00
parent ef973bd98d
commit 87e625c263
1 changed files with 3 additions and 3 deletions

View File

@ -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;
}
}