diff options
author | Brett Cannon <brett@python.org> | 2016-09-07 21:07:16 (GMT) |
---|---|---|
committer | Brett Cannon <brett@python.org> | 2016-09-07 21:07:16 (GMT) |
commit | 56be5f5376d19ffe1a3859f19577dcb6df00332f (patch) | |
tree | ad9ccba39909f0469e53e354b00c633dd9c976ee /Modules | |
parent | 56b1f1b4d5edef1ca6184225145cffc59d2b3b5d (diff) | |
download | cpython-56be5f5376d19ffe1a3859f19577dcb6df00332f.zip cpython-56be5f5376d19ffe1a3859f19577dcb6df00332f.tar.gz cpython-56be5f5376d19ffe1a3859f19577dcb6df00332f.tar.bz2 |
Eliminate a tautological-pointer-compare warning found by Clang.
Diffstat (limited to 'Modules')
-rw-r--r-- | Modules/_scproxy.c | 14 |
1 files changed, 5 insertions, 9 deletions
diff --git a/Modules/_scproxy.c b/Modules/_scproxy.c index 68be458..1ce4b77 100644 --- a/Modules/_scproxy.c +++ b/Modules/_scproxy.c @@ -71,16 +71,12 @@ get_proxy_settings(PyObject* mod __attribute__((__unused__))) result = PyDict_New(); if (result == NULL) goto error; - if (&kSCPropNetProxiesExcludeSimpleHostnames != NULL) { - aNum = CFDictionaryGetValue(proxyDict, - kSCPropNetProxiesExcludeSimpleHostnames); - if (aNum == NULL) { - v = PyBool_FromLong(0); - } else { - v = PyBool_FromLong(cfnum_to_int32(aNum)); - } - } else { + aNum = CFDictionaryGetValue(proxyDict, + kSCPropNetProxiesExcludeSimpleHostnames); + if (aNum == NULL) { v = PyBool_FromLong(0); + } else { + v = PyBool_FromLong(cfnum_to_int32(aNum)); } if (v == NULL) goto error; |