summaryrefslogtreecommitdiff
path: root/render
diff options
context:
space:
mode:
authorDana Jansens <danakj@orodu.net>2003-10-10 05:37:24 +0000
committerDana Jansens <danakj@orodu.net>2003-10-10 05:37:24 +0000
commit647baa7740992d95641c45f11eb177099152561f (patch)
treef67d04899635e58c19e9eef3200c398ce169391b /render
parent26b98ded3cde7244794b2921dfa488a8c13ffea4 (diff)
add an assert to try catch color hash table misuses
Diffstat (limited to 'render')
-rw-r--r--render/color.c3
1 files changed, 2 insertions, 1 deletions
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);