Skip to content

Commit a055e0b

Browse files
authored
aot compiler: Enlarge AOTNativeSymbol->symbol (#3662)
The old value was not enough for wasm_externref_obj_to_internal_obj, which is 34 characters long.
1 parent c05b93f commit a055e0b

1 file changed

Lines changed: 1 addition & 1 deletion

File tree

  • core/iwasm/compilation

core/iwasm/compilation/aot.h

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -300,7 +300,7 @@ typedef struct AOTCompData {
300300

301301
typedef struct AOTNativeSymbol {
302302
bh_list_link link;
303-
char symbol[32];
303+
char symbol[48];
304304
int32 index;
305305
} AOTNativeSymbol;
306306

0 commit comments

Comments
 (0)