From 4e8eba14a01dc860991fdf3bf6fa8359e58c66d3 Mon Sep 17 00:00:00 2001 From: Brian Wellington Date: Wed, 21 Feb 2001 02:01:15 +0000 Subject: [PATCH] reinstate an INSIST() referenced in [RT #421] --- lib/dns/rbt.c | 14 +------------- 1 file changed, 1 insertion(+), 13 deletions(-) diff --git a/lib/dns/rbt.c b/lib/dns/rbt.c index 5f3c908436..ecad5a7824 100644 --- a/lib/dns/rbt.c +++ b/lib/dns/rbt.c @@ -15,7 +15,7 @@ * WITH THE USE OR PERFORMANCE OF THIS SOFTWARE. */ -/* $Id: rbt.c,v 1.103 2001/02/10 22:46:24 bwelling Exp $ */ +/* $Id: rbt.c,v 1.104 2001/02/21 02:01:15 bwelling Exp $ */ /* Principal Authors: DCL */ @@ -1685,19 +1685,7 @@ unhash_node(dns_rbt_t *rbt, dns_rbtnode_t *node) { rbt->hashtable[bucket] = HASHNEXT(node); else { while (HASHNEXT(bucket_node) != node) { - /* - INSIST(HASHNEXT(bucket_node) != NULL); - - * XXXDCL This is WRONG and I have not - * yet had the chance to figure out why. - * The assertion is triggered by - * bin/tests/t_rbt -x -t 4 - * It is, of course, a bitstring problem. - * I will figure it out next week after - * my move. - - */ if (HASHNEXT(bucket_node) == NULL) break;