diff --git a/lib/net.js b/lib/net.js index fa470dbb060455..39ef8419112ec1 100644 --- a/lib/net.js +++ b/lib/net.js @@ -1435,7 +1435,10 @@ function lookupAndConnectMultiple( const address = addresses[i]; const { address: ip, family: addressType } = address; self.emit('lookup', err, ip, addressType, host); - + // It's possible we were destroyed while looking this up. + if (!self.connecting) { + return; + } if (isIP(ip) && (addressType === 4 || addressType === 6)) { if (!destinations) { destinations = addressType === 6 ? { 6: 0, 4: 1 } : { 4: 0, 6: 1 }; diff --git a/test/parallel/test-destroy-socket-in-lookup.js b/test/parallel/test-destroy-socket-in-lookup.js new file mode 100644 index 00000000000000..ddb234a5669343 --- /dev/null +++ b/test/parallel/test-destroy-socket-in-lookup.js @@ -0,0 +1,16 @@ +'use strict'; +const common = require('../common'); +const net = require('net'); + +// Test if the process crashed +const socket = net.connect({ + port: 12345, + host: 'localhost', + // Make sure autoSelectFamily is true + // then lookupAndConnectMultiple will be called + autoSelectFamily: true, +}); +// DNS resolution fails or succeeds +socket.on('lookup', common.mustCall(() => { + socket.destroy(); +}));