diff options
Diffstat (limited to 'test/run_resolver.cxx')
-rw-r--r-- | test/run_resolver.cxx | 12 |
1 files changed, 2 insertions, 10 deletions
diff --git a/test/run_resolver.cxx b/test/run_resolver.cxx index 7da2fd5b2..65c55b4df 100644 --- a/test/run_resolver.cxx +++ b/test/run_resolver.cxx @@ -51,16 +51,8 @@ int main(int argc, char **argv) } for (const struct addrinfo *i = ai; i != NULL; i = i->ai_next) { - char *p = sockaddr_to_string(i->ai_addr, i->ai_addrlen, - error); - if (p == NULL) { - freeaddrinfo(ai); - LogError(error); - return EXIT_FAILURE; - } - - g_print("%s\n", p); - g_free(p); + const auto s = sockaddr_to_string(i->ai_addr, i->ai_addrlen); + g_print("%s\n", s.c_str()); } freeaddrinfo(ai); |