Skip to content

Commit f17416e

Browse files
theanarkhmarco-ippolito
authored andcommitted
src: fix dns crash when failed to create NodeAresTask
PR-URL: #55521 Fixes: #52439 Reviewed-By: Luigi Pinca <[email protected]>
1 parent 4c15bd4 commit f17416e

File tree

1 file changed

+4
-9
lines changed

1 file changed

+4
-9
lines changed

src/cares_wrap.cc

+4-9
Original file line numberDiff line numberDiff line change
@@ -144,14 +144,10 @@ void ares_sockstate_cb(void* data, ares_socket_t sock, int read, int write) {
144144
ares_poll_cb);
145145

146146
} else {
147-
/* read == 0 and write == 0 this is c-ares's way of notifying us that */
148-
/* the socket is now closed. We must free the data associated with */
149-
/* socket. */
150-
CHECK(task &&
151-
"When an ares socket is closed we should have a handle for it");
152-
153-
channel->task_list()->erase(it);
154-
channel->env()->CloseHandle(&task->poll_watcher, ares_poll_close_cb);
147+
if (task != nullptr) {
148+
channel->task_list()->erase(it);
149+
channel->env()->CloseHandle(&task->poll_watcher, ares_poll_close_cb);
150+
}
155151

156152
if (channel->task_list()->empty()) {
157153
channel->CloseTimer();
@@ -682,7 +678,6 @@ GetNameInfoReqWrap::GetNameInfoReqWrap(
682678
void ChannelWrap::AresTimeout(uv_timer_t* handle) {
683679
ChannelWrap* channel = static_cast<ChannelWrap*>(handle->data);
684680
CHECK_EQ(channel->timer_handle(), handle);
685-
CHECK_EQ(false, channel->task_list()->empty());
686681
ares_process_fd(channel->cares_channel(), ARES_SOCKET_BAD, ARES_SOCKET_BAD);
687682
}
688683

0 commit comments

Comments
 (0)