Skip to content
Snippets Groups Projects
Commit 0cf27f7e authored by David Garcia Quintas's avatar David Garcia Quintas
Browse files

Fixed leak introduced in #3293

parent bc203a88
No related branches found
No related tags found
No related merge requests found
......@@ -267,7 +267,7 @@ void test_connect(const char *server_host, const char *client_host, int port,
int external_dns_works(const char *host) {
grpc_resolved_addresses *res = grpc_blocking_resolve_address(host, "80");
if (res != NULL) {
gpr_free(res);
grpc_resolved_addresses_destroy(res);
return 1;
}
return 0;
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment