aboutsummaryrefslogtreecommitdiff
path: root/core/sys
diff options
context:
space:
mode:
authorxenobas <rahimos.123@gmail.com>2025-10-05 20:18:41 +0100
committerxenobas <rahimos.123@gmail.com>2025-10-05 20:18:41 +0100
commit3edf964b55f3402670de9337dd83cf374932c2bd (patch)
tree5dc53e1672631e30eee9123527dd74921110f0ec /core/sys
parent7237747ee7f8c53285dc8138cfad9402be1bf77d (diff)
Fix #5225 wasm odin.js undefined this.mem
Diffstat (limited to 'core/sys')
-rw-r--r--core/sys/wasm/js/odin.js4
1 files changed, 2 insertions, 2 deletions
diff --git a/core/sys/wasm/js/odin.js b/core/sys/wasm/js/odin.js
index 2a8ccdd5e..f4f73a42a 100644
--- a/core/sys/wasm/js/odin.js
+++ b/core/sys/wasm/js/odin.js
@@ -1937,7 +1937,7 @@ function odinSetupDefaultImports(wasmMemoryInterface, consoleElement, memory) {
if (buf_len > 0 && buf_ptr) {
let n = Math.min(buf_len, str.length);
str = str.substring(0, n);
- this.mem.loadBytes(buf_ptr, buf_len).set(new TextEncoder().encode(str))
+ wasmMemoryInterface.loadBytes(buf_ptr, buf_len).set(new TextEncoder().encode(str))
return n;
}
}
@@ -2001,7 +2001,7 @@ function odinSetupDefaultImports(wasmMemoryInterface, consoleElement, memory) {
if (buf_len > 0 && buf_ptr) {
let n = Math.min(buf_len, str.length);
str = str.substring(0, n);
- this.mem.loadBytes(buf_ptr, buf_len).set(new TextEncoder().encode(str))
+ wasmMemoryInterface.loadBytes(buf_ptr, buf_len).set(new TextEncoder().encode(str))
return n;
}
}