Merge from head the facility that removes leading articles.
[idzebra-moved-to-github.git] / index / recindex.c
index e60cb1a..d15a15b 100644 (file)
@@ -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.1 2004-08-18 16:17:13 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)
@@ -100,7 +100,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 +115,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);