idcin: fix return check

CC: libav-stable@libav.org
Bug-Id: CID 732198
pull/87/merge
Vittorio Giovara 10 years ago
parent 0034314a69
commit 8ab3b71e4b
  1. 4
      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;

Loading…
Cancel
Save