aboutsummaryrefslogtreecommitdiffhomepage
path: root/src/core/surface/call.c
diff options
context:
space:
mode:
authorGravatar Craig Tiller <ctiller@google.com>2015-04-23 16:11:51 -0700
committerGravatar Craig Tiller <ctiller@google.com>2015-04-23 16:11:51 -0700
commitd393f1043155352243a3c6278a9b255d4b381cd6 (patch)
treeb62d9f9f2ba0a2a38fef201262fbf92fb317ccac /src/core/surface/call.c
parente889314fa2ff4d755c400a481831cc0c39a4c893 (diff)
Fix uninitialized variable
Diffstat (limited to 'src/core/surface/call.c')
-rw-r--r--src/core/surface/call.c1
1 files changed, 1 insertions, 0 deletions
diff --git a/src/core/surface/call.c b/src/core/surface/call.c
index c6fc56891d..135ab040ae 100644
--- a/src/core/surface/call.c
+++ b/src/core/surface/call.c
@@ -821,6 +821,7 @@ static int fill_send_ops(grpc_call *call, grpc_transport_op *op) {
mdb.list = chain_metadata_from_app(call, data.send_metadata.count,
data.send_metadata.metadata);
mdb.garbage.head = mdb.garbage.tail = NULL;
+ mdb.deadline = gpr_inf_future;
/* send status */
/* TODO(ctiller): cache common status values */
data = call->request_data[GRPC_IOREQ_SEND_STATUS];