Commit 71bc8c95 authored by Michael Niedermayer's avatar Michael Niedermayer

ffm_read_write_index: check lseek return code

Fixes CID732184
Signed-off-by: 's avatarMichael Niedermayer <michaelni@gmx.at>
parent 378a5b9c
......@@ -333,7 +333,8 @@ static int64_t ffm_read_write_index(int fd)
{
uint8_t buf[8];
lseek(fd, 8, SEEK_SET);
if (lseek(fd, 8, SEEK_SET) < 0)
return AVERROR(EIO);
if (read(fd, buf, 8) != 8)
return AVERROR(EIO);
return AV_RB64(buf);
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment