mirror of
https://github.com/FFmpeg/FFmpeg.git
synced 2025-01-24 13:56:33 +02:00
Merge remote-tracking branch 'qatar/master'
* qatar/master: idcin: fix memleaks in idcin_read_packet() Conflicts: libavformat/idcin.c Merged-by: Michael Niedermayer <michaelni@gmx.at>
This commit is contained in:
commit
2dc9bcad7d
@ -321,8 +321,10 @@ static int idcin_read_packet(AVFormatContext *s,
|
|||||||
|
|
||||||
pal = av_packet_new_side_data(pkt, AV_PKT_DATA_PALETTE,
|
pal = av_packet_new_side_data(pkt, AV_PKT_DATA_PALETTE,
|
||||||
AVPALETTE_SIZE);
|
AVPALETTE_SIZE);
|
||||||
if (!pal)
|
if (!pal) {
|
||||||
|
av_free_packet(pkt);
|
||||||
return AVERROR(ENOMEM);
|
return AVERROR(ENOMEM);
|
||||||
|
}
|
||||||
memcpy(pal, palette, AVPALETTE_SIZE);
|
memcpy(pal, palette, AVPALETTE_SIZE);
|
||||||
pkt->flags |= AV_PKT_FLAG_KEY;
|
pkt->flags |= AV_PKT_FLAG_KEY;
|
||||||
}
|
}
|
||||||
|
Loading…
x
Reference in New Issue
Block a user