diff options
Diffstat (limited to 'src/wasm/wasm.cpp')
-rw-r--r-- | src/wasm/wasm.cpp | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/wasm/wasm.cpp b/src/wasm/wasm.cpp index 4150af5b4..a1ac076e0 100644 --- a/src/wasm/wasm.cpp +++ b/src/wasm/wasm.cpp @@ -1631,7 +1631,7 @@ Importable* Module::getImport(ModuleItemKind kind, Name name) { Importable* Module::getImportOrNull(ModuleItemKind kind, Name name) { auto doReturn = [](Importable* importable) { - return importable->imported() ? importable : nullptr; + return importable ? importable->imported() ? importable : nullptr : nullptr; }; switch (kind) { |