mirror of https://github.com/nodejs/node.git
win: fix simple/test-tls-client-abort.js
parent
8eb1edc8ea
commit
daead5f5bb
|
@ -440,15 +440,16 @@ Socket.prototype.connect = function(port /* [host], [cb] */) {
|
|||
|
||||
function afterConnect(status, handle, req) {
|
||||
var self = handle.socket;
|
||||
assert.equal(handle, self._handle);
|
||||
|
||||
debug("afterConnect");
|
||||
|
||||
// callback may come after call to destroy
|
||||
if (self.destroyed) {
|
||||
return;
|
||||
}
|
||||
|
||||
assert.equal(handle, self._handle);
|
||||
|
||||
debug("afterConnect");
|
||||
|
||||
assert.ok(self._connecting);
|
||||
self._connecting = false;
|
||||
|
||||
|
|
Loading…
Reference in New Issue