diff options
Diffstat (limited to 'py/modules/IcePy/Proxy.cpp')
-rw-r--r-- | py/modules/IcePy/Proxy.cpp | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/py/modules/IcePy/Proxy.cpp b/py/modules/IcePy/Proxy.cpp index 9e462cfd550..36d0d642254 100644 --- a/py/modules/IcePy/Proxy.cpp +++ b/py/modules/IcePy/Proxy.cpp @@ -96,7 +96,7 @@ extern "C" static PyObject* proxyCompare(ProxyObject* p1, PyObject* other, int op) { - bool result; + bool result = false; if(PyObject_TypeCheck(other, &ProxyType)) { |