1
0
mirror of https://github.com/anope/anope.git synced 2026-07-10 21:43:14 +02:00

BUILD : 1.7.15 (1143) BUGS : 593 NOTES : Fixed mod_current_module not always NULL-ified in mod_run_cmd, resulting in weird segfaults in special situations

git-svn-id: svn://svn.anope.org/anope/trunk@1143 31f1291d-b8d6-0310-a050-a5561fc1590b


git-svn-id: http://anope.svn.sourceforge.net/svnroot/anope/trunk@866 5417fbe8-f217-4b02-8779-1006273d7864
This commit is contained in:
geniusdex geniusdex@31f1291d-b8d6-0310-a050-a5561fc1590b
2006-08-27 18:08:36 +00:00
parent 785a427b00
commit c2099cc2ad
3 changed files with 8 additions and 1 deletions
+1
View File
@@ -3,6 +3,7 @@ Anope Version S V N
Provided by Anope Dev. <dev@anope.org> - 2006
08/09 F Fixed port checking when using command line switches. [#575]
08/14 F Fixed db_mysql_query for better robustness. [#585]
08/27 F Fixed mod_current_module being incorrect resulting in segfault. [#593]
Provided by Trystan <trystan@nomadirc.net> - 2006
08/20 F Fixed several compiler warnings. [#586]
+2
View File
@@ -96,6 +96,7 @@ void do_run_cmd(char *service, User * u, Command * c, const char *cmd)
}
} else {
mod_current_module_name = c->mod_name;
mod_current_module = NULL;
if ((c->has_priv == NULL) || c->has_priv(u)) {
retVal = c->routine(u);
mod_current_module_name = NULL;
@@ -103,6 +104,7 @@ void do_run_cmd(char *service, User * u, Command * c, const char *cmd)
current = c->next;
while (current && retVal == MOD_CONT) {
mod_current_module_name = current->mod_name;
mod_current_module = NULL;
retVal = current->routine(u);
mod_current_module_name = NULL;
current = current->next;
+5 -1
View File
@@ -9,10 +9,14 @@ VERSION_MAJOR="1"
VERSION_MINOR="7"
VERSION_PATCH="15"
VERSION_EXTRA="-svn"
VERSION_BUILD="1142"
VERSION_BUILD="1143"
# $Log$
#
# BUILD : 1.7.15 (1143)
# BUGS : 593
# NOTES : Fixed mod_current_module not always NULL-ified in mod_run_cmd, resulting in weird segfaults in special situations
#
# BUILD : 1.7.15 (1142)
# BUGS : N/A
# NOTES : Dont let hybrid send EOBs since we told it we dont suppor them anymore