From d5b388381230a08a2f0cb1baf5b4785e071fbeb7 Mon Sep 17 00:00:00 2001 From: Philippe Antoine Date: Sun, 21 Sep 2025 20:51:59 +0200 Subject: [PATCH] fuzz: fix typo in nalloc env variable Change-Id: Icc0d48c8699b0fc8e820e89c44bfc55ddfe4d675 --- tests/fuzzer/oss-fuzz/build.sh | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/tests/fuzzer/oss-fuzz/build.sh b/tests/fuzzer/oss-fuzz/build.sh index ae5e3927..8b4f796b 100644 --- a/tests/fuzzer/oss-fuzz/build.sh +++ b/tests/fuzzer/oss-fuzz/build.sh @@ -81,7 +81,7 @@ EOF chmod +x $OUT/$TARGET_FUZZER if grep -q "nalloc_init" $fuzz_main_file; then cp $OUT/$TARGET_FUZZER $OUT/${TARGET_FUZZER}_nalloc - sed -i -e 's/^\$this_dir/NALLOQ_FREQ=32 \$this_dir/' \ + sed -i -e 's/^\$this_dir/NALLOC_FREQ=32 \$this_dir/' \ $OUT/${TARGET_FUZZER}_nalloc fi done