Commit 3455c780 authored by Austin English's avatar Austin English Committed by Alexandre Julliard

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

parent 22c1843e
......@@ -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;
}
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment