all repos — openbox @ 647baa7740992d95641c45f11eb177099152561f

openbox fork - make it a bit more like ryudo

add an assert to try catch color hash table misuses
Dana Jansens danakj@orodu.net
commit

647baa7740992d95641c45f11eb177099152561f

parent

26b98ded3cde7244794b2921dfa488a8c13ffea4

1 files changed, 2 insertions(+), 1 deletions(-)

jump to
M render/color.crender/color.c

@@ -78,7 +78,7 @@ out->gc = None;

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);