Skip to content
Snippets Groups Projects
Commit b4c55ea0 authored by Craig Tiller's avatar Craig Tiller
Browse files

Fix uninitialized variable

parent 00e67f20
No related branches found
No related tags found
No related merge requests found
...@@ -1005,7 +1005,7 @@ void grpc_server_add_listener(grpc_server *server, void *arg, ...@@ -1005,7 +1005,7 @@ void grpc_server_add_listener(grpc_server *server, void *arg,
static grpc_call_error queue_call_request(grpc_server *server, static grpc_call_error queue_call_request(grpc_server *server,
requested_call *rc) { requested_call *rc) {
call_data *calld = NULL; call_data *calld = NULL;
requested_call **requests; requested_call **requests = NULL;
gpr_mu_lock(&server->mu_call); gpr_mu_lock(&server->mu_call);
if (server->shutdown) { if (server->shutdown) {
gpr_mu_unlock(&server->mu_call); gpr_mu_unlock(&server->mu_call);
......
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