summaryrefslogtreecommitdiff
path: root/src
diff options
context:
space:
mode:
Diffstat (limited to 'src')
-rw-r--r--src/modules.c4
-rw-r--r--src/modules/Makefile.sub1
2 files changed, 2 insertions, 3 deletions
diff --git a/src/modules.c b/src/modules.c
index a87f47ca9..8a3d3a6f9 100644
--- a/src/modules.c
+++ b/src/modules.c
@@ -617,13 +617,13 @@ int loadModule(Module * m, User * u)
m->filename = sstrdup(buf);
ano_modclearerr();
m->handle = ano_modopen(m->filename);
- if ((err = ano_moderr()) != NULL) {
+ if ( m=>handle == NULL && (err = ano_moderr()) != NULL) {
alog(err);
return MOD_ERR_NOLOAD;
}
ano_modclearerr();
func = (int (*)(int, char **))ano_modsym(m->handle, "AnopeInit");
- if ((err = ano_moderr()) != NULL) {
+ if ( func == NULL && (err = ano_moderr()) != NULL) {
ano_modclose(m->handle); /* If no AnopeInit - it isnt an Anope Module, close it */
return MOD_ERR_NOLOAD;
}
diff --git a/src/modules/Makefile.sub b/src/modules/Makefile.sub
index 4cea2fbb0..7697249bf 100644
--- a/src/modules/Makefile.sub
+++ b/src/modules/Makefile.sub
@@ -26,4 +26,3 @@ clean:
spotless:
rm -f *~ *.o *.so *.c~ core
-