aboutsummaryrefslogtreecommitdiffhomepage
path: root/src/core/lib/channel
diff options
context:
space:
mode:
authorGravatar Craig Tiller <ctiller@google.com>2017-03-13 12:58:29 -0700
committerGravatar Craig Tiller <ctiller@google.com>2017-03-13 12:58:29 -0700
commit7d2c39827688026ca54b6a8a4d36c36d79aa282a (patch)
treebc0cbadf0e24c572fa26c6a7f88c48993905af18 /src/core/lib/channel
parentd426caca811823f525334ec5952995e0b887f04f (diff)
Additionally use arena for incoming metadata allocation
Diffstat (limited to 'src/core/lib/channel')
-rw-r--r--src/core/lib/channel/connected_channel.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/src/core/lib/channel/connected_channel.c b/src/core/lib/channel/connected_channel.c
index 64cf95b5a5..42ef7b7806 100644
--- a/src/core/lib/channel/connected_channel.c
+++ b/src/core/lib/channel/connected_channel.c
@@ -88,7 +88,7 @@ static grpc_error *init_call_elem(grpc_exec_ctx *exec_ctx,
channel_data *chand = elem->channel_data;
int r = grpc_transport_init_stream(
exec_ctx, chand->transport, TRANSPORT_STREAM_FROM_CALL_DATA(calld),
- &args->call_stack->refcount, args->server_transport_data);
+ &args->call_stack->refcount, args->server_transport_data, args->arena);
return r == 0 ? GRPC_ERROR_NONE
: GRPC_ERROR_CREATE("transport stream initialization failed");
}