formatting
This commit is contained in:
parent
44ec8b0ccf
commit
6e1c3aa71d
|
@ -1569,7 +1569,8 @@ int ExpressionParse(struct ParseState *Parser, struct Value **Result)
|
|||
case TokenColon:
|
||||
TernaryDepth--;
|
||||
break;
|
||||
default: break;
|
||||
default:
|
||||
break;
|
||||
}
|
||||
}
|
||||
|
||||
|
|
|
@ -446,7 +446,6 @@ void VariableStackPop(struct ParseState *Parser, struct Value *Var)
|
|||
if (Var->ValOnHeap) {
|
||||
if (Var->Val != NULL)
|
||||
HeapFreeMem(Parser->pc, Var->Val);
|
||||
|
||||
Success = HeapPopStack(Parser->pc, Var, sizeof(struct Value)); /* free from heap */
|
||||
} else if (Var->ValOnStack)
|
||||
Success = HeapPopStack(Parser->pc, Var,
|
||||
|
|
Loading…
Reference in a new issue