diff options
author | Craig Tiller <ctiller@google.com> | 2016-07-01 13:10:10 -0700 |
---|---|---|
committer | Craig Tiller <ctiller@google.com> | 2016-07-01 13:10:10 -0700 |
commit | 052f6498545d1a210f5bc84a6202f24e0e15c687 (patch) | |
tree | 40d798c3b718b4cb2169fc65acf49dd02523e7f9 /test/core/end2end/tests/simple_request.c | |
parent | 7db3c10e6d3af9e49dca2f3d1947076f9820f3b0 (diff) | |
parent | 4c3e8e49e40117c6f08c0f402fcbd29ce412101b (diff) |
Merge branch 'delayed-write' of github.com:ctiller/grpc into delayed-write
Diffstat (limited to 'test/core/end2end/tests/simple_request.c')
-rw-r--r-- | test/core/end2end/tests/simple_request.c | 2 |
1 files changed, 2 insertions, 0 deletions
diff --git a/test/core/end2end/tests/simple_request.c b/test/core/end2end/tests/simple_request.c index 42108425e6..a8014e6894 100644 --- a/test/core/end2end/tests/simple_request.c +++ b/test/core/end2end/tests/simple_request.c @@ -132,6 +132,7 @@ static void simple_request_body(grpc_end2end_test_fixture f) { grpc_metadata_array_init(&request_metadata_recv); grpc_call_details_init(&call_details); + memset(ops, 0, sizeof(ops)); op = ops; op->op = GRPC_OP_SEND_INITIAL_METADATA; op->data.send_initial_metadata.count = 0; @@ -174,6 +175,7 @@ static void simple_request_body(grpc_end2end_test_fixture f) { gpr_log(GPR_DEBUG, "client_peer=%s", peer); gpr_free(peer); + memset(ops, 0, sizeof(ops)); op = ops; op->op = GRPC_OP_SEND_INITIAL_METADATA; op->data.send_initial_metadata.count = 0; |