Skip to content

Commit

Permalink
Merge pull request grpc#7248 from yang-g/server_test
Browse files Browse the repository at this point in the history
Initialize variable.
  • Loading branch information
kpayson64 authored Jul 13, 2016
2 parents 9880525 + 48e5562 commit 286ff57
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion test/core/end2end/dualstack_socket_test.c
Original file line number Diff line number Diff line change
Expand Up @@ -273,7 +273,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_resolved_addresses *res = NULL;
grpc_error *error = grpc_blocking_resolve_address(host, "80", &res);
GRPC_ERROR_UNREF(error);
if (res != NULL) {
Expand Down

0 comments on commit 286ff57

Please sign in to comment.