aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
-rw-r--r--src/rc-plugin.c9
1 files changed, 7 insertions, 2 deletions
diff --git a/src/rc-plugin.c b/src/rc-plugin.c
index 15ab149d..d5476c81 100644
--- a/src/rc-plugin.c
+++ b/src/rc-plugin.c
@@ -43,13 +43,18 @@ void rc_plugin_load (void)
files = rc_ls_dir (NULL, RC_PLUGINDIR, 0);
STRLIST_FOREACH (files, file, i) {
char *p = rc_strcatpaths (RC_PLUGINDIR, file, NULL);
- void *h = dlopen (p, RTLD_LAZY);
+ /*
+ * We load the use RTLD_NOW so that we know it works
+ * as if we have any unknown symbols when we run then the
+ * program bails out in rc_plugin_run which is very very bad.
+ */
+ void *h = dlopen (p, RTLD_NOW);
char *func;
void *f;
int len;
if (! h) {
- eerror ("dlopen `%s': %s", p, dlerror ());
+ eerror ("dlopen: %s", dlerror ());
free (p);
continue;
}