diff options
| author | Dana Jansens <danakj@orodu.net> | 2007-03-03 02:53:57 +0000 |
|---|---|---|
| committer | Dana Jansens <danakj@orodu.net> | 2007-03-03 02:53:57 +0000 |
| commit | 8343a8192f9e024c26a3f9ce292cc1a9dfaa64b8 (patch) | |
| tree | 3844a636b675199f55a9074d28ffab7f9ac5a3b5 | |
| parent | 037fc862b0dd4535accf7b69a8c0112355bd04b1 (diff) | |
fix memleak, free the render instance on shutdown.
| -rw-r--r-- | render/instance.c | 1 |
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); } } |
