fixed a mem leak
authorMatthias Kramm <kramm@quiss.org>
Fri, 5 Feb 2010 00:52:21 +0000 (16:52 -0800)
committerMatthias Kramm <kramm@quiss.org>
Fri, 5 Feb 2010 00:52:21 +0000 (16:52 -0800)
lib/gfxtools.c

index 0869455..929d5bf 100644 (file)
@@ -1178,5 +1178,6 @@ void gfxparams_free(gfxparams_t*params)
        free(p);
        p = next;
     }
+    free(params);
 }