diff --git a/Changes b/Changes index d5a70d144..13143d715 100644 --- a/Changes +++ b/Changes @@ -1873,3 +1873,4 @@ seen. gmtime warning still there outgoing server connections, you could for example enable this if you are linking two servers with an often changing host (like dyndns.org). - Documentation updates for nodnscache. +- Fixed minor memleak with zip links. diff --git a/src/list.c b/src/list.c index 9f8de60f1..5f8ea9f3b 100644 --- a/src/list.c +++ b/src/list.c @@ -149,7 +149,7 @@ aClient *make_client(aClient *from, aClient *servr) void free_client(aClient *cptr) { - if (MyClient(cptr)) + if (MyConnect(cptr)) { if (cptr->passwd) MyFree((char *)cptr->passwd);