return None on quit
[enigma2.git] / lib / base / ebase.cpp
index 8563a593ab1798066ef31e0fb9d54a5f4e1109a2..7a57d533acb511a2b7b1c6366b5dfb074590c89f 100644 (file)
@@ -333,6 +333,13 @@ int eMainloop::runLoop()
 PyObject *eMainloop::poll(PyObject *timeout, PyObject *dict)
 {
        PyObject *res = 0;
+       
+       if (app_quit_now)
+       {
+               Py_INCREF(Py_None);
+               return Py_None;
+       }
+       
        int user_timeout = (timeout == Py_None) ? 0 : PyInt_AsLong(timeout);
        
        iterate(user_timeout, &res, dict);