fix: typo in AOT stack dump with GC (#4657)

This commit is contained in:
Xenia Lu 2025-10-16 10:20:16 +08:00 committed by GitHub
parent 826ae6eb01
commit d25fdc3709
No known key found for this signature in database
GPG Key ID: B5690EEEBB952194

View File

@ -4503,7 +4503,7 @@ aot_create_call_stack(struct WASMExecEnv *exec_env)
frame.frame_ref = (uint8 *)frame.lp + (frame_ref - (uint8 *)lp); frame.frame_ref = (uint8 *)frame.lp + (frame_ref - (uint8 *)lp);
/* copy local ref flags from AOT module */ /* copy local ref flags from AOT module */
bh_memcpy_s(frame.frame_ref, local_ref_flags_cell_num, bh_memcpy_s(frame.frame_ref, local_ref_flags_cell_num,
local_ref_flags, lp_size); local_ref_flags, local_ref_flags_cell_num);
#endif #endif
} }