add a check to make sure the color hash is empty on shutdown
This commit is contained in:
parent
647baa7740
commit
f8c81e8ca4
1 changed files with 15 additions and 1 deletions
|
@ -24,6 +24,19 @@ static RrInstance *definst = NULL;
|
||||||
static void RrTrueColorSetup (RrInstance *inst);
|
static void RrTrueColorSetup (RrInstance *inst);
|
||||||
static void RrPseudoColorSetup (RrInstance *inst);
|
static void RrPseudoColorSetup (RrInstance *inst);
|
||||||
|
|
||||||
|
#ifdef DEBUG
|
||||||
|
#include "color.h"
|
||||||
|
#endif
|
||||||
|
static void
|
||||||
|
dest(gpointer data)
|
||||||
|
{
|
||||||
|
#ifdef DEBUG
|
||||||
|
RrColor *c = data;
|
||||||
|
if (c->refcount > 0)
|
||||||
|
g_error("removing color from hash table with references");
|
||||||
|
#endif
|
||||||
|
}
|
||||||
|
|
||||||
RrInstance* RrInstanceNew (Display *display, gint screen)
|
RrInstance* RrInstanceNew (Display *display, gint screen)
|
||||||
{
|
{
|
||||||
definst = g_new (RrInstance, 1);
|
definst = g_new (RrInstance, 1);
|
||||||
|
@ -36,7 +49,8 @@ RrInstance* RrInstanceNew (Display *display, gint screen)
|
||||||
|
|
||||||
definst->pseudo_colors = NULL;
|
definst->pseudo_colors = NULL;
|
||||||
|
|
||||||
definst->color_hash = g_hash_table_new(g_int_hash, g_int_equal);
|
definst->color_hash = g_hash_table_new_full(g_int_hash, g_int_equal,
|
||||||
|
NULL, dest);
|
||||||
|
|
||||||
switch (definst->visual->class) {
|
switch (definst->visual->class) {
|
||||||
case TrueColor:
|
case TrueColor:
|
||||||
|
|
Loading…
Reference in a new issue