From 2ca4d9d662f638beb1ac99856848a1ac08ba0997 Mon Sep 17 00:00:00 2001 From: Alexis Campailla Date: Mon, 24 Feb 2014 09:28:49 -0800 Subject: [PATCH] net: fix listening on FDs on Windows Fix a bug introduced by 3da36fe of a missed early return of a handle that needed to be passed to listen. Fixes test-net-listen-fd0.js on Windows --- lib/net.js | 3 +-- 1 file changed, 1 insertion(+), 2 deletions(-) diff --git a/lib/net.js b/lib/net.js index 97e45f857c4..1ed2e86aa2c 100644 --- a/lib/net.js +++ b/lib/net.js @@ -1060,8 +1060,7 @@ var createServerHandle = exports._createServerHandle = handle.open(fd); handle.readable = true; handle.writable = true; - return handle; - + assert(!address && !port); } else if (port === -1 && addressType === -1) { handle = createPipe(); if (process.platform === 'win32') {