inetcpl: Fix incorrect expression (Coverity).
This is a regression from a65616cf1f
,
search-replace gone wrong because global literal constant had the same
name as the helper argument.
Signed-off-by: Nikolay Sivov <nsivov@codeweavers.com>
Signed-off-by: Alexandre Julliard <julliard@winehq.org>
This commit is contained in:
parent
9f88685f54
commit
fec56bb457
|
@ -62,7 +62,7 @@ static DWORD create_connection_settings(BOOL manual_proxy, const WCHAR *proxy_se
|
|||
DWORD pac_url_len;
|
||||
|
||||
size += sizeof(DWORD);
|
||||
if(L"ProxyServer")
|
||||
if(proxy_server)
|
||||
{
|
||||
proxy_server_len = WideCharToMultiByte(CP_UTF8, 0, proxy_server, -1,
|
||||
NULL, 0, NULL, NULL);
|
||||
|
|
Loading…
Reference in New Issue