From: Dana Jansens Date: Sat, 3 Mar 2007 02:53:57 +0000 (+0000) Subject: fix memleak, free the render instance on shutdown. X-Git-Url: https://git.dogcows.com/gitweb?a=commitdiff_plain;h=8343a8192f9e024c26a3f9ce292cc1a9dfaa64b8;p=chaz%2Fopenbox fix memleak, free the render instance on shutdown. --- diff --git a/render/instance.c b/render/instance.c index 02e68040..a9b70ffe 100644 --- a/render/instance.c +++ b/render/instance.c @@ -214,6 +214,7 @@ void RrInstanceFree (RrInstance *inst) g_free(inst->pseudo_colors); g_hash_table_destroy(inst->color_hash); g_object_unref(inst->pango); + g_free(inst); } }