From 9ef0cd81f74eff88191cff541add28765b59ff46 Mon Sep 17 00:00:00 2001
From: yang-g <yangg@google.com>
Date: Wed, 6 Jul 2016 16:17:37 -0700
Subject: [PATCH] Initialize variable.

---
 test/core/surface/server_test.c | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/test/core/surface/server_test.c b/test/core/surface/server_test.c
index 6dd8a435aa..3fd1c2c266 100644
--- a/test/core/surface/server_test.c
+++ b/test/core/surface/server_test.c
@@ -139,7 +139,7 @@ void test_bind_server_to_addr(const char *host, bool secure) {
 }
 
 static 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) {
-- 
GitLab