diff options
author | Kirill Volinsky <mataes2007@gmail.com> | 2014-11-13 19:56:32 +0000 |
---|---|---|
committer | Kirill Volinsky <mataes2007@gmail.com> | 2014-11-13 19:56:32 +0000 |
commit | 71caeef7aa7f9be45ade54549f21be95864268e7 (patch) | |
tree | 413429499e20cb9b0471e5b90d0cf6cd401a25a1 /src | |
parent | cbfb5c91aeefbd60007ce6ac4942ae45eb07b37b (diff) |
minor fix
git-svn-id: http://svn.miranda-ng.org/main/trunk@10983 1316c22d-e87f-b044-9b9b-93d7a3e3ba9c
Diffstat (limited to 'src')
-rw-r--r-- | src/modules/netlib/netlibautoproxy.cpp | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/src/modules/netlib/netlibautoproxy.cpp b/src/modules/netlib/netlibautoproxy.cpp index 27054b3e8c..6484c010cd 100644 --- a/src/modules/netlib/netlibautoproxy.cpp +++ b/src/modules/netlib/netlibautoproxy.cpp @@ -375,10 +375,10 @@ void NetlibLoadIeProxy(void) bEnabled = bEnabled && tResult == ERROR_SUCCESS;
tValueLen = SIZEOF(szAutoUrlStr);
- tResult = RegQueryValueExA(hSettings, "AutoConfigUrl", NULL, NULL, (BYTE*)szAutoUrlStr, &tValueLen);
+ RegQueryValueExA(hSettings, "AutoConfigUrl", NULL, NULL, (BYTE*)szAutoUrlStr, &tValueLen);
tValueLen = SIZEOF(szProxyBypassStr);
- tResult = RegQueryValueExA(hSettings, "ProxyOverride", NULL, NULL, (BYTE*)szProxyBypassStr, &tValueLen);
+ RegQueryValueExA(hSettings, "ProxyOverride", NULL, NULL, (BYTE*)szProxyBypassStr, &tValueLen);
RegCloseKey(hSettings);
|