Merge "vpxdec: fix use of uninitialized memory for raw files"

This commit is contained in:
John Koleszar 2010-11-23 12:39:03 -08:00 committed by Code Review
commit 19e32ac7c7

View File

@ -442,6 +442,8 @@ unsigned int file_is_raw(FILE *infile,
int is_raw = 0;
vpx_codec_stream_info_t si;
si.sz = sizeof(si);
if (fread(buf, 1, 32, infile) == 32)
{
int i;