Skip to content
Snippets Groups Projects
Commit fbb6b92e authored by David Garcia Quintas's avatar David Garcia Quintas
Browse files

Fixed an inexplicable wrong handling of a lock

parent 850ffbcb
No related branches found
No related tags found
No related merge requests found
...@@ -462,7 +462,7 @@ static void cuc_destroy_channel_elem(grpc_exec_ctx *exec_ctx, ...@@ -462,7 +462,7 @@ static void cuc_destroy_channel_elem(grpc_exec_ctx *exec_ctx,
grpc_subchannel_state_change_unsubscribe(exec_ctx, chand->subchannel, grpc_subchannel_state_change_unsubscribe(exec_ctx, chand->subchannel,
&chand->connectivity_cb); &chand->connectivity_cb);
grpc_connectivity_state_destroy(exec_ctx, &chand->state_tracker); grpc_connectivity_state_destroy(exec_ctx, &chand->state_tracker);
gpr_mu_lock(&chand->mu_state); gpr_mu_destroy(&chand->mu_state);
} }
const grpc_channel_filter grpc_client_uchannel_filter = { const grpc_channel_filter grpc_client_uchannel_filter = {
......
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