diff options
author | geniusdex geniusdex@31f1291d-b8d6-0310-a050-a5561fc1590b <geniusdex geniusdex@31f1291d-b8d6-0310-a050-a5561fc1590b@5417fbe8-f217-4b02-8779-1006273d7864> | 2004-12-09 20:33:17 +0000 |
---|---|---|
committer | geniusdex geniusdex@31f1291d-b8d6-0310-a050-a5561fc1590b <geniusdex geniusdex@31f1291d-b8d6-0310-a050-a5561fc1590b@5417fbe8-f217-4b02-8779-1006273d7864> | 2004-12-09 20:33:17 +0000 |
commit | 66bb7e7b0bf45a9b4fce0956e94f5a929e7019be (patch) | |
tree | df87afe03541870cb236541c96e5ce023b88ce3e | |
parent | 29a7052bc0c0a63d6cb960d96ba8d0d2238a4edb (diff) |
BUILD : 1.7.6 (485) BUGS : NOTES : Fixed a segfault when unsetting registration modes on hybrid
git-svn-id: svn://svn.anope.org/anope/trunk@485 31f1291d-b8d6-0310-a050-a5561fc1590b
git-svn-id: http://anope.svn.sourceforge.net/svnroot/anope/trunk@339 5417fbe8-f217-4b02-8779-1006273d7864
-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 |