handle edge default case for uninitialized value in eqparse

This commit is contained in:
Scott Fennell 2018-09-26 15:10:49 -05:00
parent 55db7fc708
commit 855510da63

View File

@ -20,7 +20,7 @@ double eval(stack * stk, stack1 * no)
{
stack1 nos = NULL;
double x, y, z;
double x, y, z = 0.0;
char ch;
ldiv_t ldivt;
while (!empty(*stk)) {