Fix memory leak.

pull/7611/head
Mark D. Roth 9 years ago
parent cd5f7ede27
commit d66a602de0
  1. 1
      src/core/ext/client_config/http_connect_handshaker.c

@ -269,6 +269,7 @@ char* grpc_get_http_proxy_server() {
}
proxy_name = gpr_strdup(uri->authority);
done:
gpr_free(uri_str);
grpc_uri_destroy(uri);
return proxy_name;
}

Loading…
Cancel
Save