From a77c8ade2ee20fc6149e4c689a3f196f53e85273 Mon Sep 17 00:00:00 2001 From: Michael Niedermayer Date: Wed, 29 Feb 2012 21:33:00 +0100 Subject: lavc: fix 10l oversight in realloc of avcodec_encode_video2. Packets are not guranteed to be allocated by av_malloc(). Signed-off-by: Michael Niedermayer --- libavcodec/utils.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) (limited to 'libavcodec') diff --git a/libavcodec/utils.c b/libavcodec/utils.c index 99e36f84a8..b612ca1ace 100644 --- a/libavcodec/utils.c +++ b/libavcodec/utils.c @@ -1219,7 +1219,7 @@ int attribute_align_arg avcodec_encode_video2(AVCodecContext *avctx, avpkt->size = 0; else if (!(avctx->codec->capabilities & CODEC_CAP_DELAY)) avpkt->pts = avpkt->dts = frame->pts; - if (avpkt->data) { + if (avpkt->data && avpkt->destruct == av_destruct_packet) { new_data = av_realloc(avpkt->data, avpkt->size + FF_INPUT_BUFFER_PADDING_SIZE); if (new_data) -- cgit v1.2.3