Merge pull request #10822 from jackpoz/collisions_nullterm_string

Tools/VMAP: Fix not null terminated string
This commit is contained in:
Nay
2013-09-15 07:01:58 -07:00
+2 -1
View File
@@ -508,7 +508,8 @@ namespace VMAP
return false;
}
char ident[8];
char ident[9];
ident[8] = '\0';
int readOperation = 0;
READ_OR_RETURN(&ident, 8);