diff options
-rw-r--r-- | Changes | 1 | ||||
-rw-r--r-- | src/nickserv.c | 3 | ||||
-rw-r--r-- | version.log | 6 |
3 files changed, 8 insertions, 2 deletions
@@ -13,6 +13,7 @@ Provided by Anope Dev. <dev@anope.org> - 2004 11/19 A Added anope_cmd_ctcp() to code API, for sending CTCP messages. [ #00] 11/18 A Unable to use registered nicknames as bot nicks from now on. [ #00] 11/18 A NSAddAccessOnReg to control access list on registration. [ #00] +12/09 F Hybrid crash on unsetting registration mode. [ #00] 12/09 F BotServ !seen not recognizing founder. [#167] 12/08 F ChanServ ACCESS wrong when dealing negative numbers. [#240] 12/06 F Fixed misplaced pointer in moduleAddData(). [ #00] diff --git a/src/nickserv.c b/src/nickserv.c index 0004436ac..a1a6fcd9b 100644 --- a/src/nickserv.c +++ b/src/nickserv.c @@ -1659,7 +1659,8 @@ int delnick(NickAlias * na) if (na->u) { na->u->na = NULL; - common_svsmode(na->u, ircd->modeonunreg, "1"); + if (ircd->modeonunreg) + common_svsmode(na->u, ircd->modeonunreg, "1"); } diff --git a/version.log b/version.log index 678285ac0..ab59acea6 100644 --- a/version.log +++ b/version.log @@ -8,10 +8,14 @@ VERSION_MAJOR="1" VERSION_MINOR="7" VERSION_PATCH="6" -VERSION_BUILD="484" +VERSION_BUILD="485" # $Log$ # +# BUILD : 1.7.6 (485) +# BUGS : +# NOTES : Fixed a segfault when unsetting registration modes on hybrid +# # BUILD : 1.7.6 (484) # BUGS : 167 # NOTES : Made BotServ !seen recognize the channel founder |