Commit 1d362c90 authored by Marcus Meissner's avatar Marcus Meissner Committed by Alexandre Julliard

wininet: lpwhr cannot be NULL (Coverity 927).

parent 6c35e3f4
......@@ -3832,7 +3832,7 @@ static BOOL HTTP_OpenConnection(LPWININETHTTPREQW lpwhr)
TRACE("-->\n");
if (NULL == lpwhr || lpwhr->hdr.htype != WH_HHTTPREQ)
if (lpwhr->hdr.htype != WH_HHTTPREQ)
{
INTERNET_SetLastError(ERROR_INVALID_PARAMETER);
goto lend;
......
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