return error if read failed
Originally committed as revision 17173 to svn://svn.ffmpeg.org/ffmpeg/trunk
This commit is contained in:
parent
6fcce4f995
commit
2dc9188465
@ -30,7 +30,8 @@ int64_t ffm_read_write_index(int fd)
|
|||||||
uint8_t buf[8];
|
uint8_t buf[8];
|
||||||
|
|
||||||
lseek(fd, 8, SEEK_SET);
|
lseek(fd, 8, SEEK_SET);
|
||||||
read(fd, buf, 8);
|
if (read(fd, buf, 8) != 8)
|
||||||
|
return AVERROR(EIO);
|
||||||
return AV_RB64(buf);
|
return AV_RB64(buf);
|
||||||
}
|
}
|
||||||
|
|
||||||
|
Loading…
x
Reference in New Issue
Block a user