diff options
author | yang-g <yangg@google.com> | 2015-08-19 15:14:17 -0700 |
---|---|---|
committer | yang-g <yangg@google.com> | 2015-08-19 15:14:17 -0700 |
commit | 2f543f205cdb42e7324974c8ab093e33055e4476 (patch) | |
tree | 5acb1d613b700bc521b59b8df5e6f08823f24f50 | |
parent | 89bede02f16905eb48b71710dc4ea2542b3a5ca1 (diff) |
Bug fix. Called c_str on a temp string
-rw-r--r-- | src/cpp/client/channel.cc | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/cpp/client/channel.cc b/src/cpp/client/channel.cc index 9695a0f14b..17f31c22cb 100644 --- a/src/cpp/client/channel.cc +++ b/src/cpp/client/channel.cc @@ -71,7 +71,7 @@ Call Channel::CreateCall(const RpcMethod& method, ClientContext* context, } else { const char* host_str = NULL; if (!context->authority().empty()) { - host_str = context->authority().c_str(); + host_str = context->authority_.c_str(); } else if (!host_.empty()) { host_str = host_.c_str(); } |