aboutsummaryrefslogtreecommitdiffhomepage
path: root/src/objective-c/GRPCClient/private/GRPCWrappedCall.m
diff options
context:
space:
mode:
authorGravatar Noah Eisen <ncteisen@google.com>2017-04-20 15:59:35 -0700
committerGravatar Noah Eisen <ncteisen@google.com>2017-04-20 15:59:35 -0700
commita8e567574b1b8cda8a517776ba3943c5c47886f2 (patch)
tree4711d9129a25cbcdeca8192982825d4847ea826b /src/objective-c/GRPCClient/private/GRPCWrappedCall.m
parent5e17e4430cebe6d1a1a96988a86eb6bd8c56fac5 (diff)
parent16309e396a7360b59fda1571bd65eb169e4e8748 (diff)
Merge branch 'master' of https://github.com/grpc/grpc into yet-another-error-refcount-bug
Diffstat (limited to 'src/objective-c/GRPCClient/private/GRPCWrappedCall.m')
-rw-r--r--src/objective-c/GRPCClient/private/GRPCWrappedCall.m2
1 files changed, 1 insertions, 1 deletions
diff --git a/src/objective-c/GRPCClient/private/GRPCWrappedCall.m b/src/objective-c/GRPCClient/private/GRPCWrappedCall.m
index 46e9fee7e1..1faba3e20b 100644
--- a/src/objective-c/GRPCClient/private/GRPCWrappedCall.m
+++ b/src/objective-c/GRPCClient/private/GRPCWrappedCall.m
@@ -315,7 +315,7 @@
}
- (void)dealloc {
- grpc_call_destroy(_call);
+ grpc_call_unref(_call);
}
@end