From: Andreas Monzner Date: Fri, 2 Sep 2005 21:47:55 +0000 (+0000) Subject: fix segfault (2nd try) .. and all because of a small '~' X-Git-Tag: 2.6.0~5592 X-Git-Url: https://git.cweiske.de/enigma2.git/commitdiff_plain/7273e47b06dacbd32e145e19728e09d9d86e7a6e?ds=sidebyside fix segfault (2nd try) .. and all because of a small '~' --- diff --git a/lib/dvb/epgcache.cpp b/lib/dvb/epgcache.cpp index 7a1c3dff..c22bf89e 100644 --- a/lib/dvb/epgcache.cpp +++ b/lib/dvb/epgcache.cpp @@ -981,7 +981,7 @@ void eEPGCache::channel_data::abortEPG() eDebug("[EPGC] abort caching events !!"); if (isRunning & eEPGCache::SCHEDULE) { - isRunning &= eEPGCache::SCHEDULE; + isRunning &= ~eEPGCache::SCHEDULE; m_ScheduleReader->stop(); m_ScheduleConn=0; }