From 383cb9f629fdee9a218a1236d914f50485defb27 Mon Sep 17 00:00:00 2001 From: Alon Zakai Date: Wed, 13 May 2026 13:19:44 -0700 Subject: [PATCH] fix --- src/tools/fuzzing/fuzzing.cpp | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/src/tools/fuzzing/fuzzing.cpp b/src/tools/fuzzing/fuzzing.cpp index 7dc4a9051f7..91531904a0d 100644 --- a/src/tools/fuzzing/fuzzing.cpp +++ b/src/tools/fuzzing/fuzzing.cpp @@ -4143,8 +4143,8 @@ Expression* TranslateToFuzzReader::makeBasicRef(Type type) { case HeapType::func: { // Rarely, emit a call to imported table.get (when nullable, unshared, and // where we can emit a call). - if (type.isNullable() && share == Unshared && funcContext && - tableGetImportName && !oneIn(3)) { + if (!trivialNesting && type.isNullable() && share == Unshared && + funcContext && tableGetImportName && !oneIn(3)) { return makeImportTableGet(); } return makeRefFuncConst(type);