Merge pull request #13512 from grpc/fix-subchannel-index

Fix compiler error on `need_to_unref_constructed`
pull/13517/head
Muxi Yan 7 years ago committed by GitHub
commit 67cef07946
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
  1. 2
      src/core/ext/filters/client_channel/subchannel_index.cc

@ -163,7 +163,7 @@ grpc_subchannel* grpc_subchannel_index_register(grpc_exec_ctx* exec_ctx,
grpc_subchannel_key* key,
grpc_subchannel* constructed) {
grpc_subchannel* c = nullptr;
bool need_to_unref_constructed;
bool need_to_unref_constructed = false;
while (c == nullptr) {
need_to_unref_constructed = false;

Loading…
Cancel
Save