Skip to content

Commit

Permalink
fix
Browse files Browse the repository at this point in the history
  • Loading branch information
bradh352 committed Aug 14, 2024
1 parent c975cd1 commit c18a8de
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/lib/ares_process.c
Original file line number Diff line number Diff line change
Expand Up @@ -332,7 +332,7 @@ void ares_process_pending_write(ares_channel_t *channel)
ares_server_t *server = ares__slist_node_val(node);
ares_conn_t *conn = server->tcp_conn;

if (conn == NULL || !(conn->state_flags & ARES_CONN_STATE_CONNECTED)) {
if (conn == NULL) {
continue;
}

Expand Down

0 comments on commit c18a8de

Please sign in to comment.