From 8343a8192f9e024c26a3f9ce292cc1a9dfaa64b8 Mon Sep 17 00:00:00 2001 From: Dana Jansens Date: Sat, 3 Mar 2007 02:53:57 +0000 Subject: [PATCH] fix memleak, free the render instance on shutdown. --- render/instance.c | 1 + 1 file changed, 1 insertion(+) 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); } } -- 2.39.2