Skip to content
This repository has been archived by the owner on Apr 22, 2023. It is now read-only.

Commit

Permalink
net_uv: fix 'set is undefined' error
Browse files Browse the repository at this point in the history
  • Loading branch information
piscisaureus committed Sep 9, 2011
1 parent f810998 commit b5db076
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion lib/net_uv.js
Expand Up @@ -702,7 +702,7 @@ function onconnection(clientHandle) {
if (!peername.address || !peername.port) {
var err = errnoException(errno, 'accept');
clientHandle.close();
set.emit('error', err);
self.emit('error', err);
return;
}
}
Expand Down

0 comments on commit b5db076

Please sign in to comment.