Skip to content

Commit 33d9f36

Browse files
committed
feedback
1 parent 2ab92ae commit 33d9f36

1 file changed

Lines changed: 3 additions & 3 deletions

File tree

scripts/fuzz_shell.js

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -434,8 +434,8 @@ if (secondBinary) {
434434

435435
// Compile and instantiate a wasm file. Receives the binary to build, and
436436
// whether it is the second one.
437-
function build(binary, second) {
438-
if (fuzzSplit && second) {
437+
function build(binary, isSecond) {
438+
if (fuzzSplit && isSecond) {
439439
assert(secondBinary);
440440
// Provide the primary module's exports to the secondary.
441441
imports['primary'] = exports;
@@ -455,7 +455,7 @@ function build(binary, second) {
455455
// noticeable by calls to call-export-*. When fuzzing wasm-split, we want the
456456
// original module's exports to be provided from the primary module, and it is
457457
// the only interface to the outside.
458-
if (fuzzSplit && second) {
458+
if (fuzzSplit && isSecond) {
459459
return;
460460
}
461461

0 commit comments

Comments
 (0)