aboutsummaryrefslogtreecommitdiff
path: root/lib/python
diff options
context:
space:
mode:
authorAndreas Monzner <andreas.monzner@multimedia-labs.de>2007-07-20 12:48:24 +0000
committerAndreas Monzner <andreas.monzner@multimedia-labs.de>2007-07-20 12:48:24 +0000
commit32d5ad61f5c88e22613e0ade1733d617add0df6b (patch)
tree9b620b57a4c38e7fa0a209fced0cf386d0d2ad76 /lib/python
parentc479beea7cc338380a38e29ae041c03b2c299ac1 (diff)
downloadenigma2-32d5ad61f5c88e22613e0ade1733d617add0df6b.tar.gz
enigma2-32d5ad61f5c88e22613e0ade1733d617add0df6b.zip
fix PSignal refcounting .. this fixes a bluescreen after service searching
in start wizzard
Diffstat (limited to 'lib/python')
-rw-r--r--lib/python/connections.cpp3
1 files changed, 0 insertions, 3 deletions
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;
}