aboutsummaryrefslogtreecommitdiffhomepage
diff options
context:
space:
mode:
authorGravatar Craig Tiller <ctiller@google.com>2017-01-11 14:20:28 -0800
committerGravatar Craig Tiller <ctiller@google.com>2017-01-11 14:20:28 -0800
commite5d8e02aa6efd3ce97f788560df3994473df8327 (patch)
tree908e5a52d19ada9c8370d483374eb93d9457cdeb
parenta47f51ff4b43d0a2c3fc83f47ab9a27145911065 (diff)
Fix sanity: core_banned_functions
-rw-r--r--src/cpp/common/channel_filter.cc2
1 files changed, 1 insertions, 1 deletions
diff --git a/src/cpp/common/channel_filter.cc b/src/cpp/common/channel_filter.cc
index 35cd6ca647..253614ca9b 100644
--- a/src/cpp/common/channel_filter.cc
+++ b/src/cpp/common/channel_filter.cc
@@ -50,7 +50,7 @@ grpc_linked_mdelem *MetadataBatch::AddMetadata(grpc_exec_ctx *exec_ctx,
storage->md = grpc_mdelem_from_slices(exec_ctx, SliceFromCopiedString(key),
SliceFromCopiedString(value));
GRPC_LOG_IF_ERROR("MetadataBatch::AddMetadata",
- grpc_metadata_batch_link_head(batch_, storage));
+ grpc_metadata_batch_link_head(exec_ctx, batch_, storage));
return storage;
}