From: Brendan Hansen Date: Fri, 16 Apr 2021 19:29:39 +0000 (-0500) Subject: forgot to free an integer local X-Git-Url: https://git.brendanfh.com/?a=commitdiff_plain;h=8eccf15bb9ca9317867a8bd1f3db99e218cc699b;p=onyx.git forgot to free an integer local --- diff --git a/bin/onyx b/bin/onyx index 07807238..62630b28 100755 Binary files a/bin/onyx and b/bin/onyx differ diff --git a/src/onyxwasm.c b/src/onyxwasm.c index 80b53d6f..697152e2 100644 --- a/src/onyxwasm.c +++ b/src/onyxwasm.c @@ -966,6 +966,7 @@ EMIT_FUNC(for_iterator, AstFor* for_node, u64 iter_local) { local_raw_free(mod->local_alloc, WASM_TYPE_PTR); local_raw_free(mod->local_alloc, WASM_TYPE_FUNC); local_raw_free(mod->local_alloc, WASM_TYPE_FUNC); + local_raw_free(mod->local_alloc, WASM_TYPE_INT32); *pcode = code; }