Skip to content

Commit 43c4a5c

Browse files
authored
exception handling: Fix build error (#3104)
1 parent dfd2a5b commit 43c4a5c

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

core/iwasm/interpreter/wasm_runtime.c

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1061,7 +1061,7 @@ export_tags_instantiate(const WASMModule *module,
10611061
if (export->kind == EXPORT_KIND_TAG) {
10621062
export_tag->name = export->name;
10631063

1064-
bh_assert((uint32)(module_inst->export_tags));
1064+
bh_assert(module_inst->e->tags);
10651065

10661066
export_tag->tag = &module_inst->e->tags[export->index];
10671067
export_tag++;

0 commit comments

Comments
 (0)