X-Git-Url: http://git.indexdata.com/?a=blobdiff_plain;f=dict%2Fclose.c;h=be53165a32ad31d833e9844a845f77b8964fb0ae;hb=07daef4fb241a9106fb995bb87a823708babcb10;hp=3c8cddf3eec2fc77725118932e052b051cd7930a;hpb=3c5ad6ec79e41c91b818e9953b08c6217795693d;p=idzebra-moved-to-github.git diff --git a/dict/close.c b/dict/close.c index 3c8cddf..be53165 100644 --- a/dict/close.c +++ b/dict/close.c @@ -1,27 +1,48 @@ -/* - * Copyright (C) 1994, Index Data I/S - * All rights reserved. - * Sebastian Hammer, Adam Dickmeiss - * - * $Log: close.c,v $ - * Revision 1.1 1994-08-16 16:26:47 adam - * Added dict. - * - */ +/* $Id: close.c,v 1.10 2006-03-26 14:02:49 adam Exp $ + Copyright (C) 1995-2005 + Index Data ApS + +This file is part of the Zebra server. + +Zebra is free software; you can redistribute it and/or modify it under +the terms of the GNU General Public License as published by the Free +Software Foundation; either version 2, or (at your option) any later +version. + +Zebra is distributed in the hope that it will be useful, but WITHOUT ANY +WARRANTY; without even the implied warranty of MERCHANTABILITY or +FITNESS FOR A PARTICULAR PURPOSE. See the GNU General Public License +for more details. + +You should have received a copy of the GNU General Public License +along with Zebra; see the file LICENSE.zebra. If not, write to the +Free Software Foundation, 59 Temple Place - Suite 330, Boston, MA +02111-1307, USA. +*/ + + #include #include #include #include -#include +#include "dict-p.h" int dict_close (Dict dict) { - assert (dict); - - bf_close (dict->bf); - free (dict); + if (!dict) + return 0; + + if (dict->rw) + { + void *head_buf; + dict_bf_readp (dict->dbf, 0, &head_buf); + memcpy (head_buf, &dict->head, sizeof(dict->head)); + dict_bf_touch (dict->dbf, 0); + } + dict_bf_close (dict->dbf); + xfree (dict); return 0; }