ws2_32/tests: Initialize memory to send.

This commit is contained in:
Marcus Meissner 2008-06-21 10:32:12 +02:00 committed by Alexandre Julliard
parent 2879c39d4f
commit fb140649f4
1 changed files with 1 additions and 1 deletions

View File

@ -2021,7 +2021,7 @@ static void test_send(void)
goto end;
}
buffer = HeapAlloc(GetProcessHeap(), 0, buflen);
buffer = HeapAlloc(GetProcessHeap(), HEAP_ZERO_MEMORY, buflen);
if (buffer == NULL)
{
ok(0, "HeapAlloc failed, error %d\n", GetLastError());