wininet: Fix negated check for drain_content result (clang).
Introduced with 4f40039cd7
Signed-off-by: André Hentschel <nerv@dawncrow.de>
Signed-off-by: Jacek Caban <jacek@codeweavers.com>
Signed-off-by: Alexandre Julliard <julliard@winehq.org>
This commit is contained in:
parent
01e278a309
commit
be002fd92b
|
@ -5091,7 +5091,8 @@ static DWORD HTTP_HttpSendRequestW(http_request_t *request, LPCWSTR lpszHeaders,
|
||||||
request->session->password, host))
|
request->session->password, host))
|
||||||
{
|
{
|
||||||
heap_free(requestString);
|
heap_free(requestString);
|
||||||
if(!drain_content(request, TRUE) == ERROR_SUCCESS) {
|
if (drain_content(request, TRUE) != ERROR_SUCCESS)
|
||||||
|
{
|
||||||
FIXME("Could not drain content\n");
|
FIXME("Could not drain content\n");
|
||||||
http_release_netconn(request, FALSE);
|
http_release_netconn(request, FALSE);
|
||||||
}
|
}
|
||||||
|
@ -5119,7 +5120,8 @@ static DWORD HTTP_HttpSendRequestW(http_request_t *request, LPCWSTR lpszHeaders,
|
||||||
NULL))
|
NULL))
|
||||||
{
|
{
|
||||||
heap_free(requestString);
|
heap_free(requestString);
|
||||||
if(!drain_content(request, TRUE) == ERROR_SUCCESS) {
|
if (drain_content(request, TRUE) != ERROR_SUCCESS)
|
||||||
|
{
|
||||||
FIXME("Could not drain content\n");
|
FIXME("Could not drain content\n");
|
||||||
http_release_netconn(request, FALSE);
|
http_release_netconn(request, FALSE);
|
||||||
}
|
}
|
||||||
|
|
Loading…
Reference in New Issue