Skip to content

Commit 618caa5

Browse files
evanlucasrvagg
authored andcommittedSep 12, 2015
child_process: use stdio.fd even if it is 0
Previously, in _validateStdio we were using stdio.fd || stdio. If stdio.fd was falsy (or 0 in the case of stdin), then the entire stdio object would be passed which could cause a crash. Fixes: #2721 PR-URL: #2727 Reviewed-By: silverwind - Roman Reiss <[email protected]> Reviewed-By: cjihrig - Colin Ihrig <[email protected]> Reviewed-By: indutny - Fedor Indutny <[email protected]>
1 parent 4237373 commit 618caa5

File tree

2 files changed

+13
-1
lines changed

2 files changed

+13
-1
lines changed
 

‎lib/internal/child_process.js

+1-1
Original file line numberDiff line numberDiff line change
@@ -713,7 +713,7 @@ function _validateStdio(stdio, sync) {
713713
} else if (typeof stdio === 'number' || typeof stdio.fd === 'number') {
714714
acc.push({
715715
type: 'fd',
716-
fd: stdio.fd || stdio
716+
fd: typeof stdio === 'number' ? stdio : stdio.fd
717717
});
718718
} else if (getHandleWrapType(stdio) || getHandleWrapType(stdio.handle) ||
719719
getHandleWrapType(stdio._handle)) {

‎test/parallel/test-child-process-validate-stdio.js

+12
Original file line numberDiff line numberDiff line change
@@ -28,3 +28,15 @@ var stdio2 = ['ipc', 'ipc', 'ipc'];
2828
assert.throws(function() {
2929
_validateStdio(stdio2, true);
3030
}, /You cannot use IPC with synchronous forks/);
31+
32+
const stdio3 = [process.stdin, process.stdout, process.stderr];
33+
var result = _validateStdio(stdio3, false);
34+
assert.deepStrictEqual(result, {
35+
stdio: [
36+
{ type: 'fd', fd: 0 },
37+
{ type: 'fd', fd: 1 },
38+
{ type: 'fd', fd: 2 }
39+
],
40+
ipc: undefined,
41+
ipcFd: undefined
42+
});

0 commit comments

Comments
 (0)
Please sign in to comment.