fix uninitialized member

This commit is contained in:
Enno Rehling 2016-09-07 17:48:27 +02:00
parent 632f25d429
commit 9499919387
1 changed files with 1 additions and 0 deletions

View File

@ -66,6 +66,7 @@ syntaxtree *stree_create(void)
stree->lang = lang;
stree->next = sroot;
stree->root = 0;
stree->cmds = 0;
sroot = stree;
lang = nextlocale(lang);
}