From f3dc0a80e1d9d145eb273173cb7d5d552fe7dabc Mon Sep 17 00:00:00 2001 From: "bell@sanja.is.com.ua" <> Date: Mon, 13 May 2002 22:39:36 +0300 Subject: [PATCH] HEAP tables bug (by Ramil request) --- heap/hp_hash.c | 5 +---- 1 file changed, 1 insertion(+), 4 deletions(-) diff --git a/heap/hp_hash.c b/heap/hp_hash.c index 70823c2c2c7..dbd330ea4f4 100644 --- a/heap/hp_hash.c +++ b/heap/hp_hash.c @@ -482,10 +482,7 @@ uint hp_rb_pack_key(HP_INFO *info, uint inx, uchar *key, const uchar *old, old+= seg->length, seg++) { if (seg->null_bit) - { - if (!(*key++= (char) 1 - *old++)) - continue; - } + *key++= 1 - *old++; memcpy((byte*) key, old, seg->length); key+= seg->length; }