Welcome to mirror list, hosted at ThFree Co, Russian Federation.

github.com/dotnet/runtime.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authordotnet-bot <dotnet-bot@microsoft.com>2021-09-30 17:30:20 +0300
committerdotnet-bot <dotnet-bot@microsoft.com>2021-09-30 17:30:20 +0300
commit6b11d64e7ef8f1685570f87859a3a3fe1c177d0f (patch)
tree77a66584075c60ad843c4f6cd8ebbc8fe7a3390a
parentd1c6659c2d98c623f2c6d06d2b739611b13081e2 (diff)
parentf582a401e273f7b0b76f457e42880bd5ad1132dc (diff)
Merge in 'release/6.0-rc2' changesv6.0.0-rc.2.21480.5
-rw-r--r--src/mono/wasm/runtime/library_mono.js2
1 files changed, 1 insertions, 1 deletions
diff --git a/src/mono/wasm/runtime/library_mono.js b/src/mono/wasm/runtime/library_mono.js
index cc3b9654a5a..ba1b40260f5 100644
--- a/src/mono/wasm/runtime/library_mono.js
+++ b/src/mono/wasm/runtime/library_mono.js
@@ -589,8 +589,8 @@ var MonoSupportLib = {
Module._free (this._debugger_buffer);
this._debugger_buffer_len = Math.max(command_parameters.length, this._debugger_buffer_len, 256);
this._debugger_buffer = Module._malloc (this._debugger_buffer_len);
- this._debugger_heap_bytes = new Uint8Array (Module.HEAPU8.buffer, this._debugger_buffer, this._debugger_buffer_len);
}
+ this._debugger_heap_bytes = new Uint8Array (Module.HEAPU8.buffer, this._debugger_buffer, this._debugger_buffer_len);
this._debugger_heap_bytes.set(this._base64_to_uint8 (command_parameters));
},