winhttp: Fill the read buffer first in drain_content.

This commit is contained in:
Hans Leidekker 2014-12-09 12:46:23 +01:00 committed by Alexandre Julliard
parent 1eb86e1fca
commit 4ac817b6c0

View file

@ -2148,6 +2148,7 @@ static void drain_content( request_t *request )
DWORD bytes_read;
char buffer[2048];
refill_buffer( request, FALSE );
for (;;)
{
if (!read_data( request, buffer, sizeof(buffer), &bytes_read, FALSE ) || !bytes_read) return;