1
0
mirror of https://github.com/anope/anope.git synced 2026-06-30 05:36:38 +02:00

BUILD : 1.7.21 (1375) BUGS : 858 NOTES : do_sjoin() called finduser(NULL)

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


git-svn-id: http://anope.svn.sourceforge.net/svnroot/anope/trunk@1090 5417fbe8-f217-4b02-8779-1006273d7864
This commit is contained in:
geniusdex geniusdex@31f1291d-b8d6-0310-a050-a5561fc1590b
2008-02-07 10:50:04 +00:00
parent 2a08701f55
commit 2a83fd3599
3 changed files with 13 additions and 8 deletions
+7 -6
View File
@@ -22,12 +22,13 @@ Anope Version S V N
02/04 F Memleak in bs_fantasy_unban.c [#852]
02/04 F No variable for NSReleaseTimeout in NICK_RECOVERED message. [#848]
02/04 F Added missed NickServ HELP for RESEND command. [#847]
02/08 F Updated config.guess and config.sub from upstream. [#853]
02/08 F Various small compiler warnings. [#685]
02/08 F Updated docs/WIN32.txt. [#846]
02/08 F Removed bs_fantasy_unban from core modules. [#854]
02/08 F Defcon mode parsing breaking when fed with modes with parameters. [#855]
02/08 F do_cmode() called without passing TS. [#820]
02/05 F Updated config.guess and config.sub from upstream. [#853]
02/05 F Various small compiler warnings. [#685]
02/05 F Updated docs/WIN32.txt. [#846]
02/05 F Removed bs_fantasy_unban from core modules. [#854]
02/05 F Defcon mode parsing breaking when fed with modes with parameters. [#855]
02/05 F do_cmode() called without passing TS. [#820]
02/07 F do_sjoin() looking for NULL-nick sometimes with TS6. [#858]
Provided by Jan Milants <jan_renee@msn.com> - 2008
01/16 F Server traversion with next_server() failed to list all servers. [#831]
+1 -1
View File
@@ -1070,7 +1070,7 @@ void do_sjoin(const char *source, int ac, char **av)
if (UseTS6 && ircd->ts6) {
user = find_byuid(source);
if (!user)
user = finduser(s);
user = finduser(source);
} else {
user = finduser(source);
}
+5 -1
View File
@@ -9,10 +9,14 @@ VERSION_MAJOR="1"
VERSION_MINOR="7"
VERSION_PATCH="21"
VERSION_EXTRA="-svn"
VERSION_BUILD="1374"
VERSION_BUILD="1375"
# $Log$
#
# BUILD : 1.7.21 (1375)
# BUGS : 858
# NOTES : do_sjoin() called finduser(NULL)
#
# BUILD : 1.7.21 (1374)
# BUGS : 820
# NOTES : do_cmode() called without passing TS