Merge "vpxdec updated to use !feof() instead of *buf_sz in readframe()"

This commit is contained in:
John Koleszar 2011-10-14 07:56:12 -07:00 коммит произвёл Gerrit Code Review
Родитель 6505adf271 9b85079342
Коммит 2d5c7f6740
1 изменённых файлов: 1 добавлений и 1 удалений

Просмотреть файл

@ -303,7 +303,7 @@ static int read_frame(struct input_ctx *input,
*buf_sz = new_buf_sz;
if (*buf_sz)
if (!feof(infile))
{
if (fread(*buf, 1, *buf_sz, infile) != *buf_sz)
{