From 918fdb0fad187908a0605d5365fb63b5edf21cc9 Mon Sep 17 00:00:00 2001 From: Art Cancro Date: Sun, 15 Jan 2006 05:00:52 +0000 Subject: [PATCH] * citserver.c: patch submitted by matt to keep the client protocol from getting out of sync following a .h? command. --- citadel/ChangeLog | 4 ++++ citadel/citserver.c | 3 +++ 2 files changed, 7 insertions(+) diff --git a/citadel/ChangeLog b/citadel/ChangeLog index 294763e14..684be2422 100644 --- a/citadel/ChangeLog +++ b/citadel/ChangeLog @@ -1,5 +1,9 @@ $Id$ +Sun Jan 15 00:00:13 EST 2006 ajc +* citserver.c: patch submitted by matt to keep the client protocol from + getting out of sync following a .h? command. + Sat Jan 14 23:38:44 EST 2006 ajc * setup.c: remove "--backtitle" from calls to "dialog" because its availability cannot be depended upon. diff --git a/citadel/citserver.c b/citadel/citserver.c index aa366e25f..0e0fc71f1 100644 --- a/citadel/citserver.c +++ b/citadel/citserver.c @@ -483,6 +483,9 @@ void cmd_mesg(char *mname) closedir(dp); } cprintf("000\n"); + free(dirs[0]); + free(dirs[1]); + return; } /* Otherwise, look for the requested file by name. */ -- 2.39.2