diff options
author | Mark A. Ropper <mark@chavfreezone.me.uk> | 2017-10-20 20:33:27 +0100 |
---|---|---|
committer | Alon Zakai <alonzakai@gmail.com> | 2017-10-20 12:33:27 -0700 |
commit | 71dc0791361a79e4346eb84ebadf77a324767e32 (patch) | |
tree | bbf1835652a369e1cf319ef9ec2275980d844cad | |
parent | 74d026b9afb7b11bf01639e900a382b32bacfb33 (diff) | |
download | binaryen-71dc0791361a79e4346eb84ebadf77a324767e32.tar.gz binaryen-71dc0791361a79e4346eb84ebadf77a324767e32.tar.bz2 binaryen-71dc0791361a79e4346eb84ebadf77a324767e32.zip |
Move pointer positioning outside of vector access operator to avoid MSVC complaining about out-of-range values (#1233)
-rw-r--r-- | src/wasm/wasm-binary.cpp | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/src/wasm/wasm-binary.cpp b/src/wasm/wasm-binary.cpp index f98eff670..6c79a9032 100644 --- a/src/wasm/wasm-binary.cpp +++ b/src/wasm/wasm-binary.cpp @@ -97,7 +97,7 @@ void WasmBinaryWriter::finishSection(int32_t start) { if (sizeFieldSize != MaxLEB32Bytes) { // we can save some room, nice assert(sizeFieldSize < MaxLEB32Bytes); - std::move(&o[start + MaxLEB32Bytes], &o[start + MaxLEB32Bytes + size], &o[start + sizeFieldSize]); + std::move(&o[start] + MaxLEB32Bytes, &o[start] + MaxLEB32Bytes + size, &o[start] + sizeFieldSize); o.resize(o.size() - (MaxLEB32Bytes - sizeFieldSize)); } } @@ -280,7 +280,7 @@ void WasmBinaryWriter::writeFunctions() { if (sizeFieldSize != MaxLEB32Bytes) { // we can save some room, nice assert(sizeFieldSize < MaxLEB32Bytes); - std::move(&o[start], &o[start + size], &o[sizePos + sizeFieldSize]); + std::move(&o[start], &o[start] + size, &o[sizePos] + sizeFieldSize); o.resize(o.size() - (MaxLEB32Bytes - sizeFieldSize)); } } |