diff options
author | Craig Tiller <ctiller@google.com> | 2015-09-22 07:24:21 -0700 |
---|---|---|
committer | Craig Tiller <ctiller@google.com> | 2015-09-22 07:24:21 -0700 |
commit | 40cd820fd6fee53c270c115617107100c6c18ece (patch) | |
tree | ece9083bfdc23a741f302f875f1d0c1df2ea97a1 /src/core/client_config | |
parent | 4fc085fcbb80e9a5f018c9d6186ce8ce35c764de (diff) |
Fix list iteration
Diffstat (limited to 'src/core/client_config')
-rw-r--r-- | src/core/client_config/subchannel.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/core/client_config/subchannel.c b/src/core/client_config/subchannel.c index 48df4bbd31..c570c55267 100644 --- a/src/core/client_config/subchannel.c +++ b/src/core/client_config/subchannel.c @@ -597,7 +597,7 @@ static void publish_transport(grpc_subchannel *c, grpc_call_list *call_list) { gpr_mu_unlock(&c->mu); while (w4c != NULL) { - waiting_for_connect *next = w4c; + waiting_for_connect *next = w4c->next; grpc_call_list_add(call_list, &w4c->continuation, 1); w4c = next; } |