From fea1ad522419ffa5d65202f1cf1c376dd2341a84 Mon Sep 17 00:00:00 2001 From: jilles Date: Sat, 27 Oct 2007 14:56:53 -0700 Subject: [PATCH] [svn] Fix a memory leak. --- ChangeLog | 9 +++++++++ include/serno.h | 2 +- src/channel.c | 3 ++- 3 files changed, 12 insertions(+), 2 deletions(-) diff --git a/ChangeLog b/ChangeLog index c246cf9..066577f 100644 --- a/ChangeLog +++ b/ChangeLog @@ -1,3 +1,12 @@ +jilles 2007/09/09 19:19:23 UTC (20070909-3570) + Log: + Make /knock send to all channel members on +g (anyone may invite) channels. + + + Changes: Modified: + +2 -1 trunk/modules/m_knock.c (File Modified) + + jilles 2007/09/09 18:59:08 UTC (20070909-3568) Log: Make EXTBAN 005 token like unreal's (, instead of :). diff --git a/include/serno.h b/include/serno.h index 7e76890..6d73822 100644 --- a/include/serno.h +++ b/include/serno.h @@ -1 +1 @@ -#define SERNO "20070909-3568" +#define SERNO "20070909-3570" diff --git a/src/channel.c b/src/channel.c index 5bcf29e..d6161d0 100644 --- a/src/channel.c +++ b/src/channel.c @@ -21,7 +21,7 @@ * Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA 02111-1307 * USA * - * $Id: channel.c 3432 2007-04-26 23:01:16Z jilles $ + * $Id: channel.c 3574 2007-10-27 21:56:53Z jilles $ */ #include "stdinc.h" @@ -384,6 +384,7 @@ destroy_channel(struct Channel *chptr) free_channel_list(&chptr->banlist); free_channel_list(&chptr->exceptlist); free_channel_list(&chptr->invexlist); + free_channel_list(&chptr->quietlist); /* Free the topic */ free_topic(chptr);