[FFmpeg-cvslog] avformat/icodec: Change order of operations to avoid NULL dereference
Michael Niedermayer
git at videolan.org
Sat Oct 17 15:40:49 EEST 2020
ffmpeg | branch: master | Michael Niedermayer <michael at niedermayer.cc> | Fri Oct 16 19:05:23 2020 +0200| [3300f5c133650ba25f94531d40ecc94c79b84457] | committer: Michael Niedermayer
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 at niedermayer.cc>
> http://git.videolan.org/gitweb.cgi/ffmpeg.git/?a=commit;h=3300f5c133650ba25f94531d40ecc94c79b84457
---
libavformat/icodec.c | 4 +++-
1 file changed, 3 insertions(+), 1 deletion(-)
diff --git a/libavformat/icodec.c b/libavformat/icodec.c
index b47fa98f80..c061f3ec42 100644
--- a/libavformat/icodec.c
+++ b/libavformat/icodec.c
@@ -156,12 +156,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_EOF;
+ st = s->streams[0];
+
image = &ico->images[ico->current_image];
if ((ret = avio_seek(pb, image->offset, SEEK_SET)) < 0)
More information about the ffmpeg-cvslog
mailing list