From a055e0b26f51f72606cbef3a8c0f8a9bcef4e1bd Mon Sep 17 00:00:00 2001 From: YAMAMOTO Takashi Date: Thu, 25 Jul 2024 12:21:07 +0900 Subject: [PATCH] aot compiler: Enlarge AOTNativeSymbol->symbol (#3662) The old value was not enough for wasm_externref_obj_to_internal_obj, which is 34 characters long. --- core/iwasm/compilation/aot.h | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/core/iwasm/compilation/aot.h b/core/iwasm/compilation/aot.h index ad765ca0..dcf9bbe1 100644 --- a/core/iwasm/compilation/aot.h +++ b/core/iwasm/compilation/aot.h @@ -300,7 +300,7 @@ typedef struct AOTCompData { typedef struct AOTNativeSymbol { bh_list_link link; - char symbol[32]; + char symbol[48]; int32 index; } AOTNativeSymbol;