summaryrefslogtreecommitdiff
path: root/gegl
diff options
context:
space:
mode:
authorMichael Natterer <mitch@gimp.org>2014-10-06 19:53:17 +0200
committerMichael Natterer <mitch@gimp.org>2014-10-06 19:53:17 +0200
commitb2e511e11072d992902ca939c0ad87be9d792076 (patch)
tree5b5da9dae34ecb67738a237500849050f7357670 /gegl
parentd8c6019f306d01569aee7822528ef388facae521 (diff)
gegl: don't leak GeglConfig:application_license on exit
Diffstat (limited to 'gegl')
-rw-r--r--gegl/gegl-config.c3
1 files changed, 3 insertions, 0 deletions
diff --git a/gegl/gegl-config.c b/gegl/gegl-config.c
index 58a3a905..5ecc0c13 100644
--- a/gegl/gegl-config.c
+++ b/gegl/gegl-config.c
@@ -164,6 +164,9 @@ gegl_config_finalize (GObject *gobject)
if (config->swap)
g_free (config->swap);
+ if (config->application_license)
+ g_free (config->application_license);
+
G_OBJECT_CLASS (gegl_config_parent_class)->finalize (gobject);
}