diff options
author | David Garcia Quintas <dgq@google.com> | 2016-11-16 23:57:16 -0800 |
---|---|---|
committer | David Garcia Quintas <dgq@google.com> | 2016-11-16 23:57:16 -0800 |
commit | 4a0e584d50ce735b9583f657feeed2bd24d694d5 (patch) | |
tree | 1196a65e8d22719fe41f6091f01aa9a38322262f | |
parent | 1dc9ad33273e090a1c7ffa05991dc8ccc2badee6 (diff) |
Undo wrong NULLing in grpclb
-rw-r--r-- | src/core/ext/lb_policy/grpclb/grpclb.c | 1 |
1 files changed, 0 insertions, 1 deletions
diff --git a/src/core/ext/lb_policy/grpclb/grpclb.c b/src/core/ext/lb_policy/grpclb/grpclb.c index d8ef0c8098..b7f4698400 100644 --- a/src/core/ext/lb_policy/grpclb/grpclb.c +++ b/src/core/ext/lb_policy/grpclb/grpclb.c @@ -768,7 +768,6 @@ static void glb_shutdown(grpc_exec_ctx *exec_ctx, grpc_lb_policy *pol) { * while holding glb_policy->mu: lb_on_server_status_received, invoked due to * the cancel, needs to acquire that same lock */ grpc_call *lb_call = glb_policy->lb_call; - glb_policy->lb_call = NULL; gpr_mu_unlock(&glb_policy->mu); /* glb_policy->lb_call and this local lb_call must be consistent at this point |