Skip to content

Commit af01a9a

Browse files
committed
child_process: remove lookup of undefined property
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.
1 parent 7e0097d commit af01a9a

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

lib/child_process.js

+1-1
Original file line numberDiff line numberDiff line change
@@ -940,7 +940,7 @@ function execSync(command, options) {
940940
if (inheritStderr && ret.stderr)
941941
process.stderr.write(ret.stderr);
942942

943-
const err = checkExecSyncError(ret, opts.args, command);
943+
const err = checkExecSyncError(ret, undefined, command);
944944

945945
if (err)
946946
throw err;

0 commit comments

Comments
 (0)