diff options
-rw-r--r-- | byterun/compare.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/byterun/compare.c b/byterun/compare.c index d12e47f514..387ff668b7 100644 --- a/byterun/compare.c +++ b/byterun/compare.c @@ -47,7 +47,7 @@ static void compare_free_stack(struct compare_stack* stk) { if (stk->stack != stk->init_stack) { free(stk->stack); - stk->stack = 0; + stk->stack = NULL; } } |