Skip to content

Commit

Permalink
child_process: remove lookup of undefined property
Browse files Browse the repository at this point in the history
execSync() passes opts.args to checkExecSyncError(). There are
two problems:

1. opts.args appears to always be undefined.
2. Even if it was defined, checkExecSyncError() would not use
   it since the command input is guaranteed to be defined.

This commit updates the code to pass undefined instead.
  • Loading branch information
cjihrig committed Sep 24, 2022
1 parent 7e0097d commit af01a9a
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion lib/child_process.js
Expand Up @@ -940,7 +940,7 @@ function execSync(command, options) {
if (inheritStderr && ret.stderr)
process.stderr.write(ret.stderr);

const err = checkExecSyncError(ret, opts.args, command);
const err = checkExecSyncError(ret, undefined, command);

if (err)
throw err;
Expand Down

0 comments on commit af01a9a

Please sign in to comment.