From 647baa7740992d95641c45f11eb177099152561f Mon Sep 17 00:00:00 2001 From: Dana Jansens Date: Fri, 10 Oct 2003 05:37:24 +0000 Subject: [PATCH] add an assert to try catch color hash table misuses --- render/color.c | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/render/color.c b/render/color.c index cd42758b..c672a6d2 100644 --- a/render/color.c +++ b/render/color.c @@ -78,7 +78,7 @@ RrColor *RrColorNew(const RrInstance *inst, gint r, gint g, gint b) out->pixel = xcol.pixel; out->key = key; out->refcount = 1; - g_hash_table_replace(RrColorHash(inst), &out->key, out); + g_hash_table_insert(RrColorHash(inst), &out->key, out); } } return out; @@ -88,6 +88,7 @@ void RrColorFree(RrColor *c) { if (c) { if (--c->refcount < 1) { + g_assert(g_hash_table_lookup(RrColorHash(c->inst), &c->key)); g_hash_table_remove(RrColorHash(c->inst), &c->key); if (c->pixel) XFreeColors(RrDisplay(c->inst), RrColormap(c->inst), &c->pixel, 1, 0); -- 2.39.2