From 8ab3b71e4b343cec3fa369a880ab4496d7345154 Mon Sep 17 00:00:00 2001 From: Vittorio Giovara Date: Sat, 18 Oct 2014 01:12:11 +0100 Subject: idcin: fix return check CC: libav-stable@libav.org Bug-Id: CID 732198 --- libavformat/idcin.c | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) (limited to 'libavformat/idcin.c') diff --git a/libavformat/idcin.c b/libavformat/idcin.c index 2536e8bd62..3aa0e3ea50 100644 --- a/libavformat/idcin.c +++ b/libavformat/idcin.c @@ -317,9 +317,9 @@ static int idcin_read_packet(AVFormatContext *s, pal = av_packet_new_side_data(pkt, AV_PKT_DATA_PALETTE, AVPALETTE_SIZE); - if (ret < 0) { + if (!pal) { av_free_packet(pkt); - return ret; + return AVERROR(ENOMEM); } memcpy(pal, palette, AVPALETTE_SIZE); pkt->flags |= AV_PKT_FLAG_KEY; -- cgit v1.2.3