* Reget memory when memory is allocated

This commit is contained in:
Michael Van Canneyt 2024-06-04 15:13:34 +02:00
parent 017738ed33
commit 154565601d

View File

@ -887,7 +887,8 @@ begin
// allocate wasm memory
Result:=WasiExports.AllocMem(Len);
// Need to reget the memory buffer, since it can have changed by the allocmem.
view:=getModuleMemoryDataView();
// write
p:=Result;
View.setUint8(p,Args.Length);