Util: Initialize No-Intro DB parsing stack

This commit is contained in:
Jeffrey Pfau 2015-12-20 18:59:09 -08:00
parent 54413a8fd1
commit 13cf63293d
1 changed files with 1 additions and 1 deletions

View File

@ -157,7 +157,7 @@ struct NoIntroDB* NoIntroDBLoad(struct VFile* vf) {
struct {
char* key;
struct NoIntroItem* item;
} keyStack[KEY_STACK_SIZE];
} keyStack[KEY_STACK_SIZE] = {};
struct Table* parent = 0;
size_t stackDepth = 0;