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
This commit is contained in:
Alexis Campailla 2014-02-24 09:28:49 -08:00 коммит произвёл Timothy J Fontaine
Родитель 98a0909da0
Коммит 2ca4d9d662
1 изменённых файлов: 1 добавлений и 2 удалений

Просмотреть файл

@ -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') {