X-Git-Url: http://jsfdemo.indexdata.com/?a=blobdiff_plain;f=index%2Frecindex.c;h=42bce976e196721efa6a77c872e470713485a3aa;hb=ed65d51dc1257ac4bc41d4d72d9695ee489014d0;hp=e60cb1a61206ebbc574ff0a5d37bb55472e95c88;hpb=896c0427df9d8eff5de6a1735dcd992e067df844;p=idzebra-moved-to-github.git diff --git a/index/recindex.c b/index/recindex.c index e60cb1a..42bce97 100644 --- a/index/recindex.c +++ b/index/recindex.c @@ -1,4 +1,4 @@ -/* $Id: recindex.c,v 1.34 2002-08-02 19:26:55 adam Exp $ +/* $Id: recindex.c,v 1.34.2.2 2005-01-16 23:13:29 adam Exp $ Copyright (C) 1995,1996,1997,1998,1999,2000,2001,2002 Index Data Aps @@ -26,8 +26,8 @@ Free Software Foundation, 59 Temple Place - Suite 330, Boston, MA /* * Format of first block * next (4 bytes) - * ref_count (4 bytes) - * block (504 bytes) + * ref_count (2 bytes) + * block (506 bytes) * * Format of subsequent blocks * next (4 bytes) @@ -38,6 +38,7 @@ Free Software Foundation, 59 Temple Place - Suite 330, Boston, MA * (length, data) - pairs * length = 0 if same as previous */ +#include #include #include #include @@ -100,7 +101,7 @@ static void rec_release_blocks (Records p, int sysno) { struct record_index_entry entry; int freeblock; - char block_and_ref[sizeof(short) + sizeof(int)]; + char block_and_ref[sizeof(int) + sizeof(short)]; int dst_type; int first = 1; @@ -115,7 +116,8 @@ static void rec_release_blocks (Records p, int sysno) while (freeblock) { if (bf_read (p->data_BFile[dst_type], freeblock, 0, - sizeof(block_and_ref), block_and_ref) != 1) + first ? sizeof(block_and_ref) : sizeof(int), + block_and_ref) != 1) { logf (LOG_FATAL|LOG_ERRNO, "read in rec_del_single"); exit (1);