mirror of
https://github.com/FFmpeg/FFmpeg.git
synced 2024-11-21 10:55:51 +02:00
avformat/dxa: check avio_read() return
Fixes use of uninitialized memory Fixes msan_uninit-mem_7fd4d4323ddd_2453_MUSOSP1.dxa Found-by: Mateusz "j00ru" Jurczyk and Gynvael Coldwind Signed-off-by: Michael Niedermayer <michaelni@gmx.at>
This commit is contained in:
parent
5a5c1b2442
commit
ae09db1023
@ -169,7 +169,10 @@ static int dxa_read_packet(AVFormatContext *s, AVPacket *pkt)
|
||||
}
|
||||
avio_seek(s->pb, c->vidpos, SEEK_SET);
|
||||
while(!url_feof(s->pb) && c->frames){
|
||||
avio_read(s->pb, buf, 4);
|
||||
if ((ret = avio_read(s->pb, buf, 4)) != 4) {
|
||||
av_log(s, AV_LOG_ERROR, "failed reading chunk type\n");
|
||||
return ret < 0 ? ret : AVERROR_INVALIDDATA;
|
||||
}
|
||||
switch(AV_RL32(buf)){
|
||||
case MKTAG('N', 'U', 'L', 'L'):
|
||||
if(av_new_packet(pkt, 4 + pal_size) < 0)
|
||||
@ -187,7 +190,10 @@ static int dxa_read_packet(AVFormatContext *s, AVPacket *pkt)
|
||||
avio_read(s->pb, pal + 4, 768);
|
||||
break;
|
||||
case MKTAG('F', 'R', 'A', 'M'):
|
||||
avio_read(s->pb, buf + 4, DXA_EXTRA_SIZE - 4);
|
||||
if ((ret = avio_read(s->pb, buf + 4, DXA_EXTRA_SIZE - 4)) != DXA_EXTRA_SIZE - 4) {
|
||||
av_log(s, AV_LOG_ERROR, "failed reading dxa_extra\n");
|
||||
return ret < 0 ? ret : AVERROR_INVALIDDATA;
|
||||
}
|
||||
size = AV_RB32(buf + 5);
|
||||
if(size > 0xFFFFFF){
|
||||
av_log(s, AV_LOG_ERROR, "Frame size is too big: %d\n", size);
|
||||
|
Loading…
Reference in New Issue
Block a user