diff options
Diffstat (limited to 'eit.c')
-rw-r--r-- | eit.c | 9 |
1 files changed, 8 insertions, 1 deletions
@@ -16,7 +16,7 @@ * the Free Software Foundation; either version 2 of the License, or * * (at your option) any later version. * * * - * $Id: eit.c 1.48 2002/08/11 11:11:12 kls Exp $ + * $Id: eit.c 1.49 2002/08/25 10:43:36 kls Exp $ ***************************************************************************/ #include "eit.h" @@ -1035,6 +1035,13 @@ bool cSIProcessor::Read(FILE *f) return result; } +void cSIProcessor::Clear(void) +{ + cMutexLock MutexLock(&schedulesMutex); + delete schedules; + schedules = new cSchedules; +} + void cSIProcessor::SetEpgDataFileName(const char *FileName) { epgDataFileName = NULL; |