aboutsummaryrefslogtreecommitdiffhomepage
path: root/src/core
diff options
context:
space:
mode:
authorGravatar David Garcia Quintas <dgq@google.com>2015-04-30 09:09:02 -0700
committerGravatar David Garcia Quintas <dgq@google.com>2015-04-30 09:09:02 -0700
commit34c396325a207bbacebb3cd67e108a5f36a2b5cc (patch)
tree9c2923eecce5d09b5f6636b2331ca324c340bfa4 /src/core
parent0e67cb2c3958097786d2391c6da86657ceedc4e4 (diff)
parent6d42a73bb984e19eb1bf84e2a952eec861cea464 (diff)
Merge remote-tracking branch 'upstream/master' into stap
Diffstat (limited to 'src/core')
-rw-r--r--src/core/iomgr/tcp_windows.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/src/core/iomgr/tcp_windows.c b/src/core/iomgr/tcp_windows.c
index 71534eaa3d..940cd5bcde 100644
--- a/src/core/iomgr/tcp_windows.c
+++ b/src/core/iomgr/tcp_windows.c
@@ -289,7 +289,7 @@ static grpc_endpoint_write_status win_write(grpc_endpoint *ep,
return ret;
}
- memset(&socket->write_info, 0, sizeof(OVERLAPPED));
+ memset(&socket->write_info.overlapped, 0, sizeof(OVERLAPPED));
status = WSASend(socket->socket, buffers, tcp->write_slices.count,
&bytes_sent, 0, &socket->write_info.overlapped, NULL);
if (allocated) gpr_free(allocated);