From 43c4a5c434bc92619b3fd50b9b455bcd44edda38 Mon Sep 17 00:00:00 2001 From: YAMAMOTO Takashi Date: Wed, 31 Jan 2024 21:24:34 +0900 Subject: [PATCH] exception handling: Fix build error (#3104) --- core/iwasm/interpreter/wasm_runtime.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/core/iwasm/interpreter/wasm_runtime.c b/core/iwasm/interpreter/wasm_runtime.c index 44ef3db0..003ceb1f 100644 --- a/core/iwasm/interpreter/wasm_runtime.c +++ b/core/iwasm/interpreter/wasm_runtime.c @@ -1061,7 +1061,7 @@ export_tags_instantiate(const WASMModule *module, if (export->kind == EXPORT_KIND_TAG) { export_tag->name = export->name; - bh_assert((uint32)(module_inst->export_tags)); + bh_assert(module_inst->e->tags); export_tag->tag = &module_inst->e->tags[export->index]; export_tag++;