From fa5ba6b4120455957adebededad48a1597fd0cbc Mon Sep 17 00:00:00 2001 From: fennecdjay Date: Sun, 8 Nov 2020 23:57:08 +0100 Subject: [PATCH] :art: Fix fuzzer --- scripts/fuzzer.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/scripts/fuzzer.c b/scripts/fuzzer.c index 04875883..45d9fb92 100644 --- a/scripts/fuzzer.c +++ b/scripts/fuzzer.c @@ -25,7 +25,7 @@ int LLVMFuzzerTestOneInput(const uint8_t *Data, size_t Size) { if(vector_size(&gwion.env->scope->known_ctx)) { Context ctx = (Context)vector_pop(&gwion.env->scope->known_ctx); if(!ctx->global) - REM_REF(ctx, &gwion); + context_remref(ctx, &gwion); } } mp_free2(gwion.mp, Size + 1, str); -- 2.43.0