From adc61d68b02cf91b594400e502c7786da1e02e11 Mon Sep 17 00:00:00 2001 From: Paul B Mahol Date: Fri, 26 Oct 2012 15:31:00 +0000 Subject: [PATCH] bit: check av_new_packet() return value Fixes CID703626. Signed-off-by: Paul B Mahol --- libavformat/bit.c | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/libavformat/bit.c b/libavformat/bit.c index 03c6152c5d..9f6ea4a415 100644 --- a/libavformat/bit.c +++ b/libavformat/bit.c @@ -90,7 +90,8 @@ static int read_packet(AVFormatContext *s, if(ret != 8 * packet_size * sizeof(uint16_t)) return AVERROR(EIO); - av_new_packet(pkt, packet_size); + if (av_new_packet(pkt, packet_size) < 0) + return AVERROR(ENOMEM); init_put_bits(&pbo, pkt->data, packet_size); for(j=0; j < packet_size; j++)