Merge pull request #69 from sherief/master

Fix for potential use of unassigned variable compiler warning.
pull/72/head
Alexander Gessler 2013-08-05 02:58:51 -07:00
commit 9dca64d135
1 changed files with 1 additions and 1 deletions

View File

@ -512,7 +512,7 @@ void ReadBinaryDataArray(char type, uint32_t count, const char*& data, const cha
ai_assert(data + comp_len == end);
// determine the length of the uncompressed data by looking at the type signature
uint32_t stride;
uint32_t stride = 0;
switch(type)
{
case 'f':