1
0
Fork 0
mirror of https://github.com/reactos/reactos.git synced 2025-06-05 17:30:32 +00:00
Initialize next field. Fixes CID 11063

svn path=/trunk/; revision=50140
This commit is contained in:
Timo Kreuzer 2010-12-26 09:39:31 +00:00
parent 4d40fbf685
commit 866846bf8c

View file

@ -380,6 +380,7 @@ int exec_infix2postfix(calc_number_t *number, unsigned int func)
tmp.node.number = *number;
tmp.node.base = calc.base;
tmp.node.operation = func;
tmp.next = NULL;
push(&tmp);