File tree Expand file tree Collapse file tree
Expand file tree Collapse file tree Original file line number Diff line number Diff 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
You can’t perform that action at this time.
0 commit comments