From: Andreas Monzner Date: Fri, 20 Jul 2007 12:48:24 +0000 (+0000) Subject: fix PSignal refcounting .. this fixes a bluescreen after service searching X-Git-Tag: 2.6.0~2073 X-Git-Url: https://git.cweiske.de/enigma2.git/commitdiff_plain/32d5ad61f5c88e22613e0ade1733d617add0df6b fix PSignal refcounting .. this fixes a bluescreen after service searching in start wizzard --- diff --git a/lib/python/connections.cpp b/lib/python/connections.cpp index 3c31baf8..00f33f71 100644 --- a/lib/python/connections.cpp +++ b/lib/python/connections.cpp @@ -23,10 +23,7 @@ void PSignal::callPython(ePyObject tuple) PyObject *PSignal::get() { if (!m_list) - { m_list = PyList_New(0); - Py_INCREF(m_list); - } Py_INCREF(m_list); return m_list; }