We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
hasn't been initialize
hasn't been initialized
1 parent a16da4f commit 0418041Copy full SHA for 0418041
1 file changed
core/iwasm/common/wasm_memory.c
@@ -189,7 +189,7 @@ wasm_runtime_malloc_internal(unsigned int size)
189
{
190
if (memory_mode == MEMORY_MODE_UNKNOWN) {
191
LOG_WARNING(
192
- "wasm_runtime_malloc failed: memory hasn't been initialize.\n");
+ "wasm_runtime_malloc failed: memory hasn't been initialized.\n");
193
return NULL;
194
}
195
else if (memory_mode == MEMORY_MODE_POOL) {
@@ -215,7 +215,7 @@ wasm_runtime_realloc_internal(void *ptr, unsigned int size)
215
216
217
218
- "wasm_runtime_realloc failed: memory hasn't been initialize.\n");
+ "wasm_runtime_realloc failed: memory hasn't been initialized.\n");
219
220
221
0 commit comments