From 062e197a657120e4f82a5758ff2f07f1bd8a2201 Mon Sep 17 00:00:00 2001 From: Matthias Kramm Date: Thu, 4 Feb 2010 16:52:21 -0800 Subject: [PATCH] fixed a mem leak --- lib/gfxtools.c | 1 + 1 file changed, 1 insertion(+) diff --git a/lib/gfxtools.c b/lib/gfxtools.c index 0869455..929d5bf 100644 --- a/lib/gfxtools.c +++ b/lib/gfxtools.c @@ -1178,5 +1178,6 @@ void gfxparams_free(gfxparams_t*params) free(p); p = next; } + free(params); } -- 1.7.10.4