* Fix #2325

* clang-format
This commit is contained in:
yhirose
2026-01-16 18:19:14 -05:00
committed by GitHub
parent c0469eba96
commit 0e1b52b23e

View File

@@ -4788,7 +4788,7 @@ inline int getaddrinfo_with_timeout(const char *node, const char *service,
// Allocate on the heap, so the resolver thread can keep using the data. // Allocate on the heap, so the resolver thread can keep using the data.
auto state = std::make_shared<GetAddrInfoState>(); auto state = std::make_shared<GetAddrInfoState>();
state->node = node; if (node) { state->node = node; }
state->service = service; state->service = service;
state->hints = *hints; state->hints = *hints;