Commit 88b08f12 authored by Ben L. Titzer's avatar Ben L. Titzer Committed by Commit Bot

[wasm] Use the proper constant for exports limit

R=gdeepti@chromium.org

Change-Id: I3d0a21c6db671718b9f41fb8392f6900b2fecf27
Reviewed-on: https://chromium-review.googlesource.com/1013197Reviewed-by: 's avatarDeepti Gandluri <gdeepti@chromium.org>
Commit-Queue: Ben Titzer <titzer@chromium.org>
Cr-Commit-Position: refs/heads/master@{#52608}
parent 9adf8fa8
......@@ -580,7 +580,7 @@ class ModuleDecoderImpl : public Decoder {
void DecodeExportSection() {
uint32_t export_table_count =
consume_count("exports count", kV8MaxWasmImports);
consume_count("exports count", kV8MaxWasmExports);
module_->export_table.reserve(export_table_count);
for (uint32_t i = 0; ok() && i < export_table_count; ++i) {
TRACE("DecodeExportTable[%d] module+%d\n", i,
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment