tls: fix references to undefined cb

5795e835a1021abdf803e1460501487adbac8d7c introduced unintentional
copy-paste bug. `cb` is not actually present in those functions and
should not be called, the socket should be destroy instead.

PR-URL: https://github.com/nodejs/io.js/pull/1951
Reviewed-By: Roman Reiss <me@silverwind.io>
This commit is contained in:
Fedor Indutny 2015-06-11 18:45:57 +02:00
parent 0f68377f69
commit 8732977536

View File

@ -167,7 +167,7 @@ function oncertcb(info) {
return self.destroy(err);
if (!self._handle)
return cb(new Error('Socket is closed'));
return self.destroy(new Error('Socket is closed'));
self._handle.certCbDone();
});
@ -192,7 +192,7 @@ function onnewsession(key, session) {
once = true;
if (!self._handle)
return cb(new Error('Socket is closed'));
return self.destroy(new Error('Socket is closed'));
self._handle.newSessionDone();