mirror of
https://github.com/FFmpeg/FFmpeg.git
synced 2024-11-26 19:01:44 +02:00
avformat/swfdec: check avio_read() return code
Fixes use of uninitialized memory Fixes msan_uninit-mem_7f90d9cce964_9558_videopop_guitar_300k.swf Found-by: Mateusz "j00ru" Jurczyk and Gynvael Coldwind Signed-off-by: Michael Niedermayer <michaelni@gmx.at>
This commit is contained in:
parent
8eb76217d0
commit
fde74d1b9d
@ -446,7 +446,10 @@ bitmap_end_skip:
|
||||
goto skip;
|
||||
if ((res = av_new_packet(pkt, len)) < 0)
|
||||
return res;
|
||||
avio_read(pb, pkt->data, 4);
|
||||
if (avio_read(pb, pkt->data, 4) != 4) {
|
||||
av_free_packet(pkt);
|
||||
return AVERROR_INVALIDDATA;
|
||||
}
|
||||
if (AV_RB32(pkt->data) == 0xffd8ffd9 ||
|
||||
AV_RB32(pkt->data) == 0xffd9ffd8) {
|
||||
/* old SWF files containing SOI/EOI as data start */
|
||||
|
Loading…
Reference in New Issue
Block a user