summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorKlaus Schmidinger <vdr@tvdr.de>2017-05-29 11:14:43 +0200
committerKlaus Schmidinger <vdr@tvdr.de>2017-05-29 11:14:43 +0200
commit5324809a91fe32950525c2af99b6962a18c265cd (patch)
treeecf7f1ac545eb22690eb08815ba8b5b20c259eaf
parentf69b920dbc9d9ca85f85d69c047d7fcef4188c37 (diff)
downloadvdr-5324809a91fe32950525c2af99b6962a18c265cd.tar.gz
vdr-5324809a91fe32950525c2af99b6962a18c265cd.tar.bz2
Added clearing CiResourceHandlers before shutting down the plugin manager
-rw-r--r--HISTORY1
-rw-r--r--vdr.c3
2 files changed, 3 insertions, 1 deletions
diff --git a/HISTORY b/HISTORY
index 88b66e7a..b475e674 100644
--- a/HISTORY
+++ b/HISTORY
@@ -9078,3 +9078,4 @@ Video Disk Recorder Revision History
the $(Q) macro won't be defined and commands will be displayed. You can add
Q=@ to the make call to have it less verbose (provided the plugin's Makefile
was modified as described above).
+- Added clearing CiResourceHandlers before shutting down the plugin manager.
diff --git a/vdr.c b/vdr.c
index 41dbc8f4..ea6a0cfb 100644
--- a/vdr.c
+++ b/vdr.c
@@ -22,7 +22,7 @@
*
* The project's page is at http://www.tvdr.de
*
- * $Id: vdr.c 4.14 2017/05/21 12:31:37 kls Exp $
+ * $Id: vdr.c 4.15 2017/05/29 11:10:46 kls Exp $
*/
#include <getopt.h>
@@ -1585,6 +1585,7 @@ Exit:
cVideoDirectory::Destroy();
EpgHandlers.Clear();
cSchedules::Cleanup(true);
+ CiResourceHandlers.Clear();
ListGarbageCollector.Purge(true);
PluginManager.Shutdown(true);
ReportEpgBugFixStats(true);