diff options
author | Mark D. Roth <roth@google.com> | 2016-11-29 11:34:20 -0800 |
---|---|---|
committer | Mark D. Roth <roth@google.com> | 2016-11-29 11:34:20 -0800 |
commit | 09ee8d0284a04de2ca981dbf5435f4fa798ad136 (patch) | |
tree | 9a017e6358eb3423d6f7fe0c4800112186d8559a /src/core/lib/surface/call.c | |
parent | d4d4ce5faca698551ec4bb2c52adc69433fe53c6 (diff) | |
parent | 3b04e7e3795f9f5e339ae7dfc40babb19485cfaf (diff) |
Merge remote-tracking branch 'upstream/master' into security_handshaker1
Diffstat (limited to 'src/core/lib/surface/call.c')
-rw-r--r-- | src/core/lib/surface/call.c | 5 |
1 files changed, 2 insertions, 3 deletions
diff --git a/src/core/lib/surface/call.c b/src/core/lib/surface/call.c index 8d2386e6a0..1e0f3eeca5 100644 --- a/src/core/lib/surface/call.c +++ b/src/core/lib/surface/call.c @@ -637,9 +637,6 @@ static int prepare_application_metadata(grpc_call *call, int count, if (call->send_extra_metadata_count == 0) { prepend_extra_metadata = 0; } else { - for (i = 0; i < call->send_extra_metadata_count; i++) { - GRPC_MDELEM_REF(call->send_extra_metadata[i].md); - } for (i = 1; i < call->send_extra_metadata_count; i++) { call->send_extra_metadata[i].prev = &call->send_extra_metadata[i - 1]; } @@ -685,6 +682,7 @@ static int prepare_application_metadata(grpc_call *call, int count, &call->send_extra_metadata[call->send_extra_metadata_count - 1]; batch->list.head->prev = NULL; batch->list.tail->next = NULL; + call->send_extra_metadata_count = 0; break; case 3: { /* prepend AND md */ @@ -700,6 +698,7 @@ static int prepare_application_metadata(grpc_call *call, int count, batch->list.tail = linked_from_md(last_md); batch->list.head->prev = NULL; batch->list.tail->next = NULL; + call->send_extra_metadata_count = 0; break; } default: |