From df2695582c076a610c89cb7ab6eb973e4a9c2d63 Mon Sep 17 00:00:00 2001 From: Sebastian Hammer Date: Tue, 19 Mar 1996 13:14:57 +0000 Subject: [PATCH] Moved an xfree() --- isam/isam.c | 7 +++++-- 1 file changed, 5 insertions(+), 2 deletions(-) diff --git a/isam/isam.c b/isam/isam.c index d2edbbe..da49155 100644 --- a/isam/isam.c +++ b/isam/isam.c @@ -4,7 +4,10 @@ * Sebastian Hammer, Adam Dickmeiss * * $Log: isam.c,v $ - * Revision 1.19 1996-02-10 12:20:56 quinn + * Revision 1.20 1996-03-19 13:14:57 quinn + * Moved an xfree() + * + * Revision 1.19 1996/02/10 12:20:56 quinn * *** empty log message *** * * Revision 1.18 1996/02/06 10:19:56 quinn @@ -360,7 +363,6 @@ int is_close(ISAM is) bf_close(is->types[i].bf); } } - xfree(is); if (is->writeflag) { logf(LOG_LOG, "ISAM statistics:"); @@ -383,6 +385,7 @@ int is_close(ISAM is) logf(LOG_LOG, "block_jumps %d", statistics.block_jumps); logf(LOG_LOG, "tab_deletes %d", statistics.tab_deletes); } + xfree(is); return 0; } -- 1.7.10.4