Skip to content

Commit 3be5ff9

Browse files
theanarkhrichardlau
authored andcommitted
lib: return directly if udp socket close before lookup
PR-URL: #51914 Reviewed-By: Matteo Collina <[email protected]> Reviewed-By: Paolo Insogna <[email protected]> Reviewed-By: Luigi Pinca <[email protected]>
1 parent 276d1d1 commit 3be5ff9

File tree

2 files changed

+22
-3
lines changed

2 files changed

+22
-3
lines changed

‎lib/dgram.js‎

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -328,6 +328,9 @@ Socket.prototype.bind = function(port_, address_ /* , callback */){
328328

329329
// Resolve address first
330330
state.handle.lookup(address,(err,ip)=>{
331+
if(!state.handle)
332+
return;// Handle has been closed in the mean time
333+
331334
if(err){
332335
state.bindState=BIND_STATE_UNBOUND;
333336
this.emit('error',err);
@@ -356,9 +359,6 @@ Socket.prototype.bind = function(port_, address_ /* , callback */){
356359
this.emit('error',ex);
357360
});
358361
}else{
359-
if(!state.handle)
360-
return;// Handle has been closed in the mean time
361-
362362
consterr=state.handle.bind(ip,port||0,flags);
363363
if(err){
364364
constex=newExceptionWithHostPort(err,'bind',ip,port);
Lines changed: 19 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,19 @@
1+
'use strict';
2+
constcommon=require('../common');
3+
constdgram=require('dgram');
4+
5+
// Do not emit error event in callback which is called by lookup when socket is closed
6+
constsocket=dgram.createSocket({
7+
type: 'udp4',
8+
lookup: (...args)=>{
9+
// Call lookup callback after 1s
10+
setTimeout(()=>{
11+
args.at(-1)(newError('an error'));
12+
},1000);
13+
}
14+
});
15+
16+
socket.on('error',common.mustNotCall());
17+
socket.bind(12345,'localhost');
18+
// Close the socket before calling DNS lookup callback
19+
socket.close();

0 commit comments

Comments
(0)