diff options
author | Craig Tiller <craig.tiller@gmail.com> | 2015-07-07 14:58:55 -0700 |
---|---|---|
committer | Craig Tiller <craig.tiller@gmail.com> | 2015-07-07 14:58:55 -0700 |
commit | ab9f192ce99f8bd53ff30b121558eff4f9cb30d4 (patch) | |
tree | 609f94684cd9f1eade43c66e28ce67bf5a61e1b9 /src/core/channel | |
parent | 772187cdf0ff9dfafd2e693474c51eeddfe4c800 (diff) |
Fix TSAN reported bug
Diffstat (limited to 'src/core/channel')
-rw-r--r-- | src/core/channel/client_channel.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/core/channel/client_channel.c b/src/core/channel/client_channel.c index 871e970eb8..f890f99237 100644 --- a/src/core/channel/client_channel.c +++ b/src/core/channel/client_channel.c @@ -427,7 +427,7 @@ static void cc_on_config_changed(void *arg, int iomgr_success) { GRPC_RESOLVER_REF(resolver, "channel-next"); gpr_mu_unlock(&chand->mu_config); GRPC_CHANNEL_INTERNAL_REF(chand->master, "resolver"); - grpc_resolver_next(chand->resolver, &chand->incoming_configuration, + grpc_resolver_next(resolver, &chand->incoming_configuration, &chand->on_config_changed); GRPC_RESOLVER_UNREF(resolver, "channel-next"); } else { |