From 02e38d377742dae21e624d6fa1bf43c3940d9aac Mon Sep 17 00:00:00 2001 From: Adam Dickmeiss Date: Fri, 31 Oct 1997 12:34:27 +0000 Subject: [PATCH] Bug fix: memory leak. --- index/trunc.c | 6 +++++- 1 file changed, 5 insertions(+), 1 deletion(-) diff --git a/index/trunc.c b/index/trunc.c index 5acc72d..56ad3fb 100644 --- a/index/trunc.c +++ b/index/trunc.c @@ -4,7 +4,10 @@ * Sebastian Hammer, Adam Dickmeiss * * $Log: trunc.c,v $ - * Revision 1.7 1997-09-29 09:07:29 adam + * Revision 1.8 1997-10-31 12:34:27 adam + * Bug fix: memory leak. + * + * Revision 1.7 1997/09/29 09:07:29 adam * Minor change. * * Revision 1.6 1997/09/22 12:39:06 adam @@ -138,6 +141,7 @@ static void heap_close (struct trunc_info *ti) xfree (ti->heap); xfree (ti->swapbuf); xfree (ti->tmpbuf); + xfree (ti->buf); xfree (ti); } -- 1.7.10.4