From e505b6cf2a7f6821264d82cd2e8869b2be38d0b2 Mon Sep 17 00:00:00 2001 From: Adam Dickmeiss Date: Mon, 29 Nov 2004 21:53:00 +0000 Subject: [PATCH] Fix length for ISAMB dummy block --- isamb/isamb.c | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) 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; -- 1.7.10.4