exception handling: Fix build error (#3104)

This commit is contained in:
YAMAMOTO Takashi 2024-01-31 21:24:34 +09:00 committed by GitHub
parent dfd2a5b0b4
commit 43c4a5c434
No known key found for this signature in database
GPG Key ID: B5690EEEBB952194

View File

@ -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++;