aboutsummaryrefslogtreecommitdiffhomepage
path: root/src/core/lib/surface
diff options
context:
space:
mode:
authorGravatar Craig Tiller <ctiller@google.com>2017-03-15 08:21:19 -0700
committerGravatar Craig Tiller <ctiller@google.com>2017-03-15 08:21:19 -0700
commitdbad370aa5a5480824388d77207d3d0b2aa94a1c (patch)
treeedc8c94f37ce68c2821a59e8f1463130c4a6056c /src/core/lib/surface
parent51006fea710ef7e4faefae653432f55947639b76 (diff)
Fix use-after-free, cronet compiles
Diffstat (limited to 'src/core/lib/surface')
-rw-r--r--src/core/lib/surface/call.c3
1 files changed, 1 insertions, 2 deletions
diff --git a/src/core/lib/surface/call.c b/src/core/lib/surface/call.c
index 9a8870b86a..f1285b923d 100644
--- a/src/core/lib/surface/call.c
+++ b/src/core/lib/surface/call.c
@@ -438,8 +438,7 @@ static void release_call(grpc_exec_ctx *exec_ctx, void *call,
grpc_error *error) {
grpc_call *c = call;
grpc_channel *channel = c->channel;
- grpc_channel_update_call_size_estimate(channel,
- gpr_arena_destroy(c->arena));
+ grpc_channel_update_call_size_estimate(channel, gpr_arena_destroy(c->arena));
GRPC_CHANNEL_INTERNAL_UNREF(exec_ctx, channel, "call");
}