Commit fec56bb4 authored by Nikolay Sivov's avatar Nikolay Sivov Committed by Alexandre Julliard

inetcpl: Fix incorrect expression (Coverity).

This is a regression from a65616cf, search-replace gone wrong because global literal constant had the same name as the helper argument. Signed-off-by: 's avatarNikolay Sivov <nsivov@codeweavers.com> Signed-off-by: 's avatarAlexandre Julliard <julliard@winehq.org>
parent 9f88685f
......@@ -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);
......
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