diff options
author | Craig Tiller <ctiller@google.com> | 2015-01-14 17:49:59 -0800 |
---|---|---|
committer | Craig Tiller <ctiller@google.com> | 2015-01-14 17:49:59 -0800 |
commit | 0fc50596c7803c2b33ed08d7c72c109f1ae76497 (patch) | |
tree | 5a8644c1d5a5794aeb081d62789cc199058d5046 | |
parent | 408c7383cc56cf9531657ea17b1f9fdc5c41891b (diff) |
Initialize start_ok
-rw-r--r-- | src/core/surface/call.c | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/src/core/surface/call.c b/src/core/surface/call.c index eb39044e93..d8a34cf68d 100644 --- a/src/core/surface/call.c +++ b/src/core/surface/call.c @@ -232,6 +232,7 @@ grpc_call *grpc_call_create(grpc_channel *channel, call->have_alarm = 0; call->received_metadata = 0; call->got_status_code = 0; + call->start_ok = 0; call->status_code = server_transport_data != NULL ? GRPC_STATUS_OK : GRPC_STATUS_UNKNOWN; call->status_details = NULL; |