diff options
author | Craig Tiller <ctiller@google.com> | 2017-02-17 06:51:47 -0800 |
---|---|---|
committer | Craig Tiller <ctiller@google.com> | 2017-02-17 06:51:47 -0800 |
commit | f422cc77ba5485c1e720f5d6553f06b5fecec317 (patch) | |
tree | dd9df277f89ef63c5c6786feeec5887cec18dcc4 /src/core/lib/http/httpcli.c | |
parent | 985736358cc96a343edd8b3df651f8eb6bd66025 (diff) | |
parent | 46ca4f7d4eca6cb69a6d80ce35f58f2325cf945d (diff) |
Merge github.com:grpc/grpc into bm_cq
Diffstat (limited to 'src/core/lib/http/httpcli.c')
-rw-r--r-- | src/core/lib/http/httpcli.c | 5 |
1 files changed, 3 insertions, 2 deletions
diff --git a/src/core/lib/http/httpcli.c b/src/core/lib/http/httpcli.c index fb2108987b..6d7aa43b81 100644 --- a/src/core/lib/http/httpcli.c +++ b/src/core/lib/http/httpcli.c @@ -93,8 +93,9 @@ void grpc_httpcli_context_init(grpc_httpcli_context *context) { context->pollset_set = grpc_pollset_set_create(); } -void grpc_httpcli_context_destroy(grpc_httpcli_context *context) { - grpc_pollset_set_destroy(context->pollset_set); +void grpc_httpcli_context_destroy(grpc_exec_ctx *exec_ctx, + grpc_httpcli_context *context) { + grpc_pollset_set_destroy(exec_ctx, context->pollset_set); } static void next_address(grpc_exec_ctx *exec_ctx, internal_request *req, |