]> jfr.im git - solanum.git/commitdiff
[svn] Fix a memory leak.
authorjilles <redacted>
Sat, 27 Oct 2007 21:56:53 +0000 (14:56 -0700)
committerjilles <redacted>
Sat, 27 Oct 2007 21:56:53 +0000 (14:56 -0700)
ChangeLog
include/serno.h
src/channel.c

index c246cf91d475bd49011b7d528d9c053aed43e8bc..066577fe3729277254ce9fa95944c638600a0987 100644 (file)
--- 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 :).
index 7e76890663de913c93ebaf43197a5888fb97f303..6d73822703210882f05bfdfb037639c63d2b15ea 100644 (file)
@@ -1 +1 @@
-#define SERNO "20070909-3568"
+#define SERNO "20070909-3570"
index 5bcf29e2a40b8855776e679241cafe5db0d495b2..d6161d0d65f8bdea8130245fa24e32f284a24f96 100644 (file)
@@ -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);