Commit 2dc91884 authored by Baptiste Coudurier's avatar Baptiste Coudurier

return error if read failed

Originally committed as revision 17173 to svn://svn.ffmpeg.org/ffmpeg/trunk
parent 6fcce4f9
...@@ -30,7 +30,8 @@ int64_t ffm_read_write_index(int fd) ...@@ -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);
} }
......
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