summaryrefslogtreecommitdiff
path: root/sections.c
diff options
context:
space:
mode:
authorKlaus Schmidinger <vdr@tvdr.de>2007-10-14 13:11:23 +0200
committerKlaus Schmidinger <vdr@tvdr.de>2007-10-14 13:11:23 +0200
commit67df515c06774a549078026816a32f8520c08d17 (patch)
tree505383398de6b3ecc2b3ef526a0a0cc62145e92a /sections.c
parent7780e3664a5d76c84b5d1971e833ba8cc27c0f82 (diff)
downloadvdr-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.c4
1 files changed, 2 insertions, 2 deletions
diff --git a/sections.c b/sections.c
index 041f5380..afb4f0bd 100644
--- a/sections.c
+++ b/sections.c
@@ -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;
}