From: fennecdjay Date: Sun, 8 Nov 2020 22:57:08 +0000 (+0100) Subject: :art: Fix fuzzer X-Git-Tag: nightly~1189 X-Git-Url: http://10.10.0.4:5575/?a=commitdiff_plain;h=fa5ba6b4120455957adebededad48a1597fd0cbc;p=gwion.git :art: Fix fuzzer --- 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);