mirror of
https://github.com/bytecodealliance/wasm-micro-runtime.git
synced 2025-07-15 08:48:33 +00:00
change function name
This commit is contained in:
parent
5f3397591f
commit
8266d15dea
|
@ -3296,7 +3296,7 @@ aot_unload(AOTModule *module)
|
|||
#endif
|
||||
|
||||
#if WASM_ENABLE_LOAD_CUSTOM_SECTION != 0
|
||||
wasm_loader_destroy_custom_sections(module->custom_section_list);
|
||||
wasm_runtime_destroy_custom_sections(module->custom_section_list);
|
||||
#endif
|
||||
|
||||
wasm_runtime_free(module);
|
||||
|
|
|
@ -4908,7 +4908,7 @@ wasm_runtime_show_app_heap_corrupted_prompt()
|
|||
|
||||
#if WASM_ENABLE_LOAD_CUSTOM_SECTION != 0
|
||||
void
|
||||
wasm_loader_destroy_custom_sections(WASMCustomSection *section_list)
|
||||
wasm_runtime_destroy_custom_sections(WASMCustomSection *section_list)
|
||||
{
|
||||
WASMCustomSection *section = section_list, *next;
|
||||
while (section) {
|
||||
|
|
|
@ -886,7 +886,7 @@ wasm_runtime_show_app_heap_corrupted_prompt();
|
|||
|
||||
#if WASM_ENABLE_LOAD_CUSTOM_SECTION != 0
|
||||
void
|
||||
wasm_loader_destroy_custom_sections(WASMCustomSection *section_list);
|
||||
wasm_runtime_destroy_custom_sections(WASMCustomSection *section_list);
|
||||
#endif
|
||||
|
||||
#ifdef __cplusplus
|
||||
|
|
|
@ -3788,7 +3788,7 @@ wasm_loader_unload(WASMModule *module)
|
|||
#endif
|
||||
|
||||
#if WASM_ENABLE_LOAD_CUSTOM_SECTION != 0
|
||||
wasm_loader_destroy_custom_sections(module->custom_section_list);
|
||||
wasm_runtime_destroy_custom_sections(module->custom_section_list);
|
||||
#endif
|
||||
|
||||
wasm_runtime_free(module);
|
||||
|
|
Loading…
Reference in New Issue
Block a user