diff options
-rw-r--r-- | Changes | 1 | ||||
-rw-r--r-- | src/modules.c | 2 | ||||
-rw-r--r-- | version.log | 3 |
3 files changed, 4 insertions, 2 deletions
@@ -1,5 +1,6 @@ Anope Version 1.8 - GIT ------------------- +06/05 F Fixed modules being loaded regardless of the load abort signal. [#1527] Provided by Michael Wobst - 2013 05/25 U Update Hybrid protocol module to support Hybrid 8.1 diff --git a/src/modules.c b/src/modules.c index d63a8b130..9962a16fb 100644 --- a/src/modules.c +++ b/src/modules.c @@ -697,7 +697,7 @@ int loadModule(Module * m, User * u) } argc++; - init_union.func(argc, argv); /* exec AnopeInit */ + ret = init_union.func(argc, argv); /* exec AnopeInit */ if (u) { free(argv[0]); } diff --git a/version.log b/version.log index 38ed80cb4..d35658653 100644 --- a/version.log +++ b/version.log @@ -8,9 +8,10 @@ VERSION_MAJOR="1" VERSION_MINOR="8" VERSION_PATCH="9" VERSION_EXTRA="-git" -VERSION_BUILD="3115" +VERSION_BUILD="3116" # Changes since 1.8.8 Release +#Revision 3116 - Bug #1527 - Fixed modules being loaded regardless of the load abort signal returned by a modules AnopeInit function. (Introduced in commit. e0c3069c) |