From: Andreas Monzner Date: Sat, 27 May 2006 12:15:13 +0000 (+0000) Subject: fix enigma2 all systemresources (high systemload) since previous CI changes X-Git-Tag: 2.6.0~3374 X-Git-Url: https://git.cweiske.de/enigma2.git/commitdiff_plain/a14453e375c72eae797ef3c93971c08eb05f8529?ds=sidebyside fix enigma2 all systemresources (high systemload) since previous CI changes --- 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;