summaryrefslogtreecommitdiff
path: root/render
diff options
context:
space:
mode:
authorDana Jansens <danakj@orodu.net>2007-03-03 02:53:57 +0000
committerDana Jansens <danakj@orodu.net>2007-03-03 02:53:57 +0000
commit8343a8192f9e024c26a3f9ce292cc1a9dfaa64b8 (patch)
tree3844a636b675199f55a9074d28ffab7f9ac5a3b5 /render
parent037fc862b0dd4535accf7b69a8c0112355bd04b1 (diff)
fix memleak, free the render instance on shutdown.
Diffstat (limited to 'render')
-rw-r--r--render/instance.c1
1 files changed, 1 insertions, 0 deletions
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);
}
}