@@ -743,7 +743,7 @@ wasm_debug_instance_get_obj_mem(WASMDebugInstance *instance, uint64 offset,
743743 module_inst = (WASMModuleInstance * )exec_env -> module_inst ;
744744
745745 if (offset + * size > module_inst -> module -> load_size ) {
746- LOG_VERBOSE ("wasm_debug_instance_get_data_mem size over flow !\n" );
746+ LOG_VERBOSE ("wasm_debug_instance_get_data_mem size overflow !\n" );
747747 * size = module_inst -> module -> load_size >= offset
748748 ? module_inst -> module -> load_size - offset
749749 : 0 ;
@@ -797,7 +797,7 @@ wasm_debug_instance_get_linear_mem(WASMDebugInstance *instance, uint64 offset,
797797 num_bytes_per_page = memory -> num_bytes_per_page ;
798798 linear_mem_size = num_bytes_per_page * memory -> cur_page_count ;
799799 if (offset + * size > linear_mem_size ) {
800- LOG_VERBOSE ("wasm_debug_instance_get_linear_mem size over flow !\n" );
800+ LOG_VERBOSE ("wasm_debug_instance_get_linear_mem size overflow !\n" );
801801 * size = linear_mem_size >= offset ? linear_mem_size - offset : 0 ;
802802 }
803803 bh_memcpy_s (buf , (uint32 )* size , memory -> memory_data + offset ,
@@ -830,7 +830,7 @@ wasm_debug_instance_set_linear_mem(WASMDebugInstance *instance, uint64 offset,
830830 num_bytes_per_page = memory -> num_bytes_per_page ;
831831 linear_mem_size = num_bytes_per_page * memory -> cur_page_count ;
832832 if (offset + * size > linear_mem_size ) {
833- LOG_VERBOSE ("wasm_debug_instance_get_linear_mem size over flow !\n" );
833+ LOG_VERBOSE ("wasm_debug_instance_get_linear_mem size overflow !\n" );
834834 * size = linear_mem_size >= offset ? linear_mem_size - offset : 0 ;
835835 }
836836 bh_memcpy_s (memory -> memory_data + offset , (uint32 )* size , buf ,
0 commit comments