Commit a27eee86 authored by Mike McCormack's avatar Mike McCormack Committed by Alexandre Julliard

wininet: Fix a typo (spotted by Coverity).

parent ff688549
......@@ -80,7 +80,7 @@ static BOOL WININET_GetProxyServer( HINTERNET hRequest, LPWSTR szBuf, DWORD sz )
/* FIXME: perhaps it would be better to use InternetCrackUrl here */
p = strchrW(szBuf, ':');
if(*p)
if (p)
*p = 0;
return TRUE;
......
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