diff options
-rw-r--r-- | Changes | 3 | ||||
-rw-r--r-- | src/core/os_mode.c | 1 | ||||
-rw-r--r-- | version.log | 6 |
3 files changed, 8 insertions, 2 deletions
@@ -16,13 +16,14 @@ Provided by Anope Dev. <dev@anope.org> - 2006 03/01 F Fixed suspend check on /cs invite. [#429] 03/01 F Fixed memleaks in some protocol files. [#434] 03/01 F Fixed bot check on /bs unassign. [#446] -03/01 F Fixed wasteful finduser() call in os_oline.c [#457] +03/01 F Fixed wasteful finduser() call in os_oline.c. [#457] 03/01 F Fixed memleak in runDefCon(). [#451] 03/01 F Fixed function type of get_xop_level. [#459] 03/01 F Prevented registration of UnrealIRCd's "local" channels. [#456] 03/01 F Fixed bug in moduleNoticeLang(). [#421] 03/01 F Made should_mode_change() extern. [#436] 03/01 F Made add_ns_timeout() static. [#438] +03/01 F Fixed memleak in os_mode.c. [#444] Provided by nenolod. <nenolod@nenolod.net> - 2006 02/03 A Support for Charybdis IRCd. [ #00] diff --git a/src/core/os_mode.c b/src/core/os_mode.c index b926d16a4..ed651b4a2 100644 --- a/src/core/os_mode.c +++ b/src/core/os_mode.c @@ -92,6 +92,7 @@ int do_os_mode(User * u) ac = split_buf(modes, &av, 1); chan_set_modes(s_OperServ, c, ac, av, -1); + free(av); if (WallOSMode) anope_cmd_global(s_OperServ, "%s used MODE %s on %s", u->nick, diff --git a/version.log b/version.log index 355af3f03..5de39a5c7 100644 --- a/version.log +++ b/version.log @@ -9,10 +9,14 @@ VERSION_MAJOR="1" VERSION_MINOR="7" VERSION_PATCH="13" VERSION_EXTRA="-svn" -VERSION_BUILD="988" +VERSION_BUILD="989" # $Log$ # +# BUILD : 1.7.13 (989) +# BUGS : 444 +# NOTES : Fixed memleak in os_mode.c +# # BUILD : 1.7.13 (988) # BUGS : 421 436 438 # NOTES : Hooray, it's still bug-fixing-day! |