winhttp/tests: Make sure a return value is used (LLVM/Clang).

This commit is contained in:
Austin English 2011-02-08 16:05:28 -08:00 committed by Alexandre Julliard
parent 22c1843e08
commit 3455c78042
1 changed files with 1 additions and 0 deletions

View File

@ -871,6 +871,7 @@ static void test_secure_connection(void)
{
size = 0;
ret = WinHttpReadData(req, buffer, sizeof(buffer), &size);
ok(ret == TRUE, "WinHttpReadData failed: %u.\n", GetLastError());
if (!size) break;
}