X-Git-Url: http://git.indexdata.com/?a=blobdiff_plain;f=index%2Frecindex.c;h=a6dfbe9d5b4a9621dfbd918d73a7b7dca9f34223;hb=edf09fc5529eae3e8214a432058b4c07b2b8d2f9;hp=979d067be1b7977432167e95fd4fbb3f79c2c364;hpb=151f14593b5b81be4a65f64e402a73023d9b0022;p=idzebra-moved-to-github.git diff --git a/index/recindex.c b/index/recindex.c index 979d067..a6dfbe9 100644 --- a/index/recindex.c +++ b/index/recindex.c @@ -4,7 +4,12 @@ * Sebastian Hammer, Adam Dickmeiss * * $Log: recindex.c,v $ - * Revision 1.17 1997-02-12 20:39:46 adam + * Revision 1.18 1997-07-15 16:28:42 adam + * Bug fix: storeData didn't work with files with multiple records. + * Bug fix: fixed memory management with records; not really well + * thought through. + * + * Revision 1.17 1997/02/12 20:39:46 adam * Implemented options -f that limits the log to the first * records. * Changed some log messages also. @@ -98,11 +103,11 @@ static void rec_write_head (Records p) static void rec_tmp_expand (Records p, int size, int dst_type) { - if (p->tmp_size < size + 256 || + if (p->tmp_size < size + 2048 || p->tmp_size < p->head.block_size[dst_type]*2) { xfree (p->tmp_buf); - p->tmp_size = size + p->head.block_size[dst_type]*2 + 256; + p->tmp_size = size + p->head.block_size[dst_type]*2 + 2048; p->tmp_buf = xmalloc (p->tmp_size); } }