From a14453e375c72eae797ef3c93971c08eb05f8529 Mon Sep 17 00:00:00 2001 From: Andreas Monzner Date: Sat, 27 May 2006 12:15:13 +0000 Subject: [PATCH] fix enigma2 all systemresources (high systemload) since previous CI changes --- lib/dvb_ci/dvbci.cpp | 5 +++-- 1 file changed, 3 insertions(+), 2 deletions(-) diff --git a/lib/dvb_ci/dvbci.cpp b/lib/dvb_ci/dvbci.cpp index b182a360..63df2650 100644 --- a/lib/dvb_ci/dvbci.cpp +++ b/lib/dvb_ci/dvbci.cpp @@ -433,8 +433,6 @@ int eDVBCISlot::send(const unsigned char *data, size_t len) void eDVBCISlot::data(int what) { - if (state == stateInvalid) - return; if(what == eSocketNotifier::Priority) { if(state != stateRemoved) { state = stateRemoved; @@ -452,6 +450,9 @@ void eDVBCISlot::data(int what) return; } + if (state == stateInvalid) + return; + if(state != stateInserted) { eDebug("ci inserted"); state = stateInserted; -- 2.30.2