From d4ef85573fcc8cd8c64d0d3915f3d5baddd19789 Mon Sep 17 00:00:00 2001 From: Adam Dickmeiss Date: Tue, 15 Jun 2004 09:29:31 +0000 Subject: [PATCH] Add missing initialization of member replace_tokens in struct zebra_map. Error only showed up for missing default.idx (and charmaps) and more aggressive nmem_reset/nmem_destroy .. --- util/zebramap.c | 5 +++-- 1 file changed, 3 insertions(+), 2 deletions(-) diff --git a/util/zebramap.c b/util/zebramap.c index c46dbbc..8b24c04 100644 --- a/util/zebramap.c +++ b/util/zebramap.c @@ -1,5 +1,5 @@ -/* $Id: zebramap.c,v 1.30 2003-03-26 16:41:48 adam Exp $ - Copyright (C) 1995,1996,1997,1998,1999,2000,2001,2002,2003 +/* $Id: zebramap.c,v 1.31 2004-06-15 09:29:31 adam Exp $ + Copyright (C) 1995,1996,1997,1998,1999,2000,2001,2002,2003,2004 Index Data Aps This file is part of the Zebra server. @@ -270,6 +270,7 @@ chrmaptab zebra_charmap_get (ZebraMaps zms, unsigned reg_id) zm->type = ZEBRA_MAP_TYPE_INDEX; zm->completeness = 0; zm->next = zms->map_list; + zm->replace_tokens = 0; zms->map_list = zm->next; zms->lookup_array[zm->reg_id & 255] = zm; -- 1.7.10.4