diff options
author | Klaus Schmidinger <vdr@tvdr.de> | 2007-10-14 13:11:23 +0200 |
---|---|---|
committer | Klaus Schmidinger <vdr@tvdr.de> | 2007-10-14 13:11:23 +0200 |
commit | 67df515c06774a549078026816a32f8520c08d17 (patch) | |
tree | 505383398de6b3ecc2b3ef526a0a0cc62145e92a /sections.c | |
parent | 7780e3664a5d76c84b5d1971e833ba8cc27c0f82 (diff) | |
download | vdr-67df515c06774a549078026816a32f8520c08d17.tar.gz vdr-67df515c06774a549078026816a32f8520c08d17.tar.bz2 |
Added cDevice::CloseFilter(); some fixes to PLUGINS.html1.5.10
Diffstat (limited to 'sections.c')
-rw-r--r-- | sections.c | 4 |
1 files changed, 2 insertions, 2 deletions
@@ -4,7 +4,7 @@ * See the main source file 'vdr.c' for copyright information and * how to reach the author. * - * $Id: sections.c 1.14 2005/09/18 09:33:40 kls Exp $ + * $Id: sections.c 1.15 2007/10/14 12:52:07 kls Exp $ */ #include "sections.h" @@ -105,7 +105,7 @@ void cSectionHandler::Del(const cFilterData *FilterData) for (fh = filterHandles.First(); fh; fh = filterHandles.Next(fh)) { if (fh->filterData.Is(FilterData->pid, FilterData->tid, FilterData->mask)) { if (--fh->used <= 0) { - close(fh->handle); + device->CloseFilter(fh->handle); filterHandles.Del(fh); break; } |