Skip to content

Commit

Permalink
Merge pull request grpc#3946 from dgquintas/wut
Browse files Browse the repository at this point in the history
Fixed an inexplicable wrong handling of a lock
  • Loading branch information
ctiller committed Oct 23, 2015
2 parents 850ffbc + fbb6b92 commit 23c91fb
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/core/channel/client_uchannel.c
Original file line number Diff line number Diff line change
Expand Up @@ -462,7 +462,7 @@ static void cuc_destroy_channel_elem(grpc_exec_ctx *exec_ctx,
grpc_subchannel_state_change_unsubscribe(exec_ctx, chand->subchannel,
&chand->connectivity_cb);
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 = {
Expand Down

0 comments on commit 23c91fb

Please sign in to comment.