mirror of
https://github.com/xenia-project/FFmpeg.git
synced 2024-11-28 05:50:43 +00:00
oma: check avio_read() return value
This commit is contained in:
parent
14086341bf
commit
4c1e56ede8
@ -80,6 +80,8 @@ static int oma_read_header(AVFormatContext *s,
|
||||
|
||||
ff_id3v2_read(s, ID3v2_EA3_MAGIC);
|
||||
ret = avio_read(s->pb, buf, EA3_HEADER_SIZE);
|
||||
if (ret < EA3_HEADER_SIZE)
|
||||
return -1;
|
||||
|
||||
if (memcmp(buf, ((const uint8_t[]){'E', 'A', '3'}),3) || buf[4] != 0 || buf[5] != EA3_HEADER_SIZE) {
|
||||
av_log(s, AV_LOG_ERROR, "Couldn't find the EA3 header !\n");
|
||||
|
Loading…
Reference in New Issue
Block a user