From: Adam Dickmeiss Date: Mon, 29 Nov 2004 21:53:00 +0000 (+0000) Subject: Fix length for ISAMB dummy block X-Git-Tag: snippet.version.1~251 X-Git-Url: http://git.indexdata.com/?a=commitdiff_plain;h=e505b6cf2a7f6821264d82cd2e8869b2be38d0b2;p=idzebra-moved-to-github.git Fix length for ISAMB dummy block --- diff --git a/isamb/isamb.c b/isamb/isamb.c index d1722e0..57ebb84 100644 --- a/isamb/isamb.c +++ b/isamb/isamb.c @@ -1,4 +1,4 @@ -/* $Id: isamb.c,v 1.59 2004-11-19 10:27:09 heikki Exp $ +/* $Id: isamb.c,v 1.60 2004-11-29 21:53:00 adam Exp $ Copyright (C) 1995,1996,1997,1998,1999,2000,2001,2002,2003,2004 Index Data Aps @@ -384,7 +384,7 @@ void isamb_close (ISAMB isamb) encode_ptr(&dst, isamb->file[i].head.block_size); encode_ptr(&dst, isamb->file[i].head.block_max); encode_ptr(&dst, isamb->file[i].head.free_list); - memset(dst, '\0', 16); /* ensure no random bytes are written */ + memset(dst, '\0', b_size); /* ensure no random bytes are written */ len = dst - hbuf;