From 60e26668b3c73b9163d9fb1ae6a7951c6acbc889 Mon Sep 17 00:00:00 2001 From: Ryan Dahl Date: Sun, 4 Dec 2011 00:09:02 -0800 Subject: [PATCH] Remove superfluous 'new' --- lib/child_process.js | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/lib/child_process.js b/lib/child_process.js index 1eba363fdc..dcff85ab3e 100644 --- a/lib/child_process.js +++ b/lib/child_process.js @@ -33,7 +33,7 @@ var Pipe; function createPipe(ipc) { // Lazy load if (!Pipe) { - Pipe = new process.binding('pipe_wrap').Pipe; + Pipe = process.binding('pipe_wrap').Pipe; } return new Pipe(ipc);