Use RTLD_NOW instead of RTLD_LAZY
This commit is contained in:
parent
026926fc4f
commit
3ed60d5202
@ -43,13 +43,18 @@ void rc_plugin_load (void)
|
|||||||
files = rc_ls_dir (NULL, RC_PLUGINDIR, 0);
|
files = rc_ls_dir (NULL, RC_PLUGINDIR, 0);
|
||||||
STRLIST_FOREACH (files, file, i) {
|
STRLIST_FOREACH (files, file, i) {
|
||||||
char *p = rc_strcatpaths (RC_PLUGINDIR, file, NULL);
|
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;
|
char *func;
|
||||||
void *f;
|
void *f;
|
||||||
int len;
|
int len;
|
||||||
|
|
||||||
if (! h) {
|
if (! h) {
|
||||||
eerror ("dlopen `%s': %s", p, dlerror ());
|
eerror ("dlopen: %s", dlerror ());
|
||||||
free (p);
|
free (p);
|
||||||
continue;
|
continue;
|
||||||
}
|
}
|
||||||
|
Loading…
Reference in New Issue
Block a user