aboutsummaryrefslogtreecommitdiffhomepage
path: root/src/objective-c/GRPCClient/private/GRPCChannel.m
diff options
context:
space:
mode:
authorGravatar Craig Tiller <ctiller@google.com>2017-01-20 15:58:57 -0800
committerGravatar Craig Tiller <ctiller@google.com>2017-01-20 15:58:57 -0800
commitf8ea95786fc0c266c93881e4df4be9871196ac66 (patch)
treea2652cea936fe76ed2a99a28f48ba6a126a8ad47 /src/objective-c/GRPCClient/private/GRPCChannel.m
parent331f705886468f6b81a49e7b02bf60b4c045f850 (diff)
parentffc843ddcb89bdd285a17ff032b1fd9ba626667e (diff)
Merge branch 'maxmsgsz' into bm_msgsz
Diffstat (limited to 'src/objective-c/GRPCClient/private/GRPCChannel.m')
-rw-r--r--src/objective-c/GRPCClient/private/GRPCChannel.m2
1 files changed, 1 insertions, 1 deletions
diff --git a/src/objective-c/GRPCClient/private/GRPCChannel.m b/src/objective-c/GRPCClient/private/GRPCChannel.m
index 2397c929f7..c533c5ae71 100644
--- a/src/objective-c/GRPCClient/private/GRPCChannel.m
+++ b/src/objective-c/GRPCClient/private/GRPCChannel.m
@@ -200,7 +200,7 @@ static grpc_channel_args *BuildChannelArgs(NSDictionary *dictionary) {
return grpc_channel_create_call(_unmanagedChannel,
NULL, GRPC_PROPAGATE_DEFAULTS,
queue.unmanagedQueue,
- path.UTF8String,
+ grpc_slice_from_copied_string(path.UTF8String),
NULL, // Passing NULL for host
gpr_inf_future(GPR_CLOCK_REALTIME), NULL);
}