[VM] Fixed a bug where string arguments did not have a null terminator.

This commit is contained in:
jtuu 2019-11-11 23:00:56 +02:00
parent f6b766bda3
commit d85de25f31

View File

@ -367,7 +367,7 @@ export class VirtualMachine {
this.string_arg_store.write_string_utf16_at( this.string_arg_store.write_string_utf16_at(
0, 0,
string_arg, string_arg,
string_arg.length * 2, string_arg.length * 2 + 2,
); );
exec.push_arg(this.string_arg_store.address, Kind.String); exec.push_arg(this.string_arg_store.address, Kind.String);
} }