summaryrefslogtreecommitdiff
path: root/plugin.c
diff options
context:
space:
mode:
authorKlaus Schmidinger <vdr@tvdr.de>2020-12-16 11:54:06 +0100
committerKlaus Schmidinger <vdr@tvdr.de>2020-12-16 11:54:06 +0100
commit82cc5c76a4fa97268a455ea6e7df18567f4af68c (patch)
tree1419a0c11e9fc57e3b0684bb596d9e0aa7a539f0 /plugin.c
parent67a4ba4228d878fe7f5484ab8d80178ca51ce6e6 (diff)
downloadvdr-82cc5c76a4fa97268a455ea6e7df18567f4af68c.tar.gz
vdr-82cc5c76a4fa97268a455ea6e7df18567f4af68c.tar.bz2
Improved handling missing VDRPluginDestroyer()
Diffstat (limited to 'plugin.c')
-rw-r--r--plugin.c6
1 files changed, 5 insertions, 1 deletions
diff --git a/plugin.c b/plugin.c
index cad2cd56..7c0d55c8 100644
--- a/plugin.c
+++ b/plugin.c
@@ -4,7 +4,7 @@
* See the main source file 'vdr.c' for copyright information and
* how to reach the author.
*
- * $Id: plugin.c 4.3 2020/12/13 10:56:36 kls Exp $
+ * $Id: plugin.c 4.4 2020/12/16 11:54:06 kls Exp $
*/
#include "plugin.h"
@@ -234,6 +234,10 @@ bool cDll::Load(bool Log)
plugin = create();
destroy = (destroy_t *)dlsym(handle, "VDRPluginDestroyer");
error = dlerror();
+ if (error) {
+ error = NULL;
+ isyslog("plugin %s: missing symbol VDRPluginDestroyer(), please rebuild", fileName);
+ }
}
}
if (!error) {