mirror of
https://github.com/FFmpeg/FFmpeg.git
synced 2025-03-17 20:17:55 +02:00
avformat/icodec: Change order of operations to avoid NULL dereference
Fixes: SEGV on unknown address 0x000000000000 Fixes: 26379/clusterfuzz-testcase-minimized-ffmpeg_dem_ICO_fuzzer-5709011753893888 Found-by: continuous fuzzing process https://github.com/google/oss-fuzz/tree/master/projects/ffmpeg Reviewed-by: Peter Ross Signed-off-by: Michael Niedermayer <michael@niedermayer.cc> (cherry picked from commit 3300f5c133650ba25f94531d40ecc94c79b84457) Signed-off-by: Michael Niedermayer <michael@niedermayer.cc>
This commit is contained in:
parent
870d5f1846
commit
b71283c68f
@ -124,12 +124,14 @@ static int read_packet(AVFormatContext *s, AVPacket *pkt)
|
||||
IcoDemuxContext *ico = s->priv_data;
|
||||
IcoImage *image;
|
||||
AVIOContext *pb = s->pb;
|
||||
AVStream *st = s->streams[0];
|
||||
AVStream *st;
|
||||
int ret;
|
||||
|
||||
if (ico->current_image >= ico->nb_images)
|
||||
return AVERROR(EIO);
|
||||
|
||||
st = s->streams[0];
|
||||
|
||||
image = &ico->images[ico->current_image];
|
||||
|
||||
if ((ret = avio_seek(pb, image->offset, SEEK_SET)) < 0)
|
||||
|
Loading…
x
Reference in New Issue
Block a user