commit | ff1f320ac826ec39ebe8a2088e11398a29471261 | [log] [tgz] |
---|---|---|
author | Martin Wilck <Martin.Wilck@fujitsu-siemens.com> | Fri Apr 26 18:31:19 2002 +0000 |
committer | Alexandre Julliard <julliard@winehq.org> | Fri Apr 26 18:31:19 2002 +0000 |
tree | 01fa22edff897a5dd206fc1a621996ca0cc3cc33 | |
parent | b0b3c385e1e917fea41105a50e35aeb5138c9e30 [diff] [blame] |
Fixed some bugs in my recently submitted patch series.
diff --git a/dlls/winsock/socket.c b/dlls/winsock/socket.c index f8ba6c1..072b281 100644 --- a/dlls/winsock/socket.c +++ b/dlls/winsock/socket.c
@@ -2487,7 +2487,7 @@ goto error; } - iovec = WS_ALLOC ( dwBufferCount * sizeof (struct iovec) ); + iovec = HeapAlloc (GetProcessHeap(), 0, dwBufferCount * sizeof (struct iovec) ); if ( !iovec ) {