summaryrefslogtreecommitdiff
path: root/deps/v8/src/wasm
diff options
context:
space:
mode:
authorMichaël Zasso <targos@protonmail.com>2017-06-12 10:39:12 +0200
committerMichaël Zasso <targos@protonmail.com>2017-06-20 10:50:52 +0200
commit8f907b6baf59fe08c8f7cbc279ea7dec71f42c8c (patch)
tree3825a95982c383080f2956ed0fcb44b6d2558120 /deps/v8/src/wasm
parentf40caf728247ce78a1fe0a0673c4893fe299fafc (diff)
downloadandroid-node-v8-8f907b6baf59fe08c8f7cbc279ea7dec71f42c8c.tar.gz
android-node-v8-8f907b6baf59fe08c8f7cbc279ea7dec71f42c8c.tar.bz2
android-node-v8-8f907b6baf59fe08c8f7cbc279ea7dec71f42c8c.zip
deps: update V8 to 5.9.211.37
PR-URL: https://github.com/nodejs/node/pull/13631 Reviewed-By: Ben Noordhuis <info@bnoordhuis.nl> Reviewed-By: James M Snell <jasnell@gmail.com>
Diffstat (limited to 'deps/v8/src/wasm')
-rw-r--r--deps/v8/src/wasm/module-decoder.cc2
1 files changed, 1 insertions, 1 deletions
diff --git a/deps/v8/src/wasm/module-decoder.cc b/deps/v8/src/wasm/module-decoder.cc
index 2b58065e77..b05840975b 100644
--- a/deps/v8/src/wasm/module-decoder.cc
+++ b/deps/v8/src/wasm/module-decoder.cc
@@ -214,7 +214,7 @@ class WasmSectionIterator {
TRACE("Section: %s\n", SectionName(section_code_));
if (section_code_ == kUnknownSectionCode &&
- section_end_ > decoder_.pc()) {
+ section_end_ >= decoder_.pc()) {
// skip to the end of the unknown section.
uint32_t remaining =
static_cast<uint32_t>(section_end_ - decoder_.pc());