diff options
author | rbuj <[email protected]> | 2021-11-08 13:17:12 +0100 |
---|---|---|
committer | Robert Antoni Buj Gelonch <[email protected]> | 2021-12-31 14:15:13 +0100 |
commit | e4b0b64458cc32d08a47dbffebeb1fcec7087a95 (patch) | |
tree | 07c7520b914b218ff90d27d3d6f1ef3fe0617046 /capplets/default-applications/mate-da-capplet.c | |
parent | f47234f789171942f8195df62a945b14216238d4 (diff) | |
download | mate-control-center-e4b0b64458cc32d08a47dbffebeb1fcec7087a95.tar.bz2 mate-control-center-e4b0b64458cc32d08a47dbffebeb1fcec7087a95.tar.xz |
mate-da-capplet: fix memory leak
Diffstat (limited to 'capplets/default-applications/mate-da-capplet.c')
-rw-r--r-- | capplets/default-applications/mate-da-capplet.c | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/capplets/default-applications/mate-da-capplet.c b/capplets/default-applications/mate-da-capplet.c index 89154d37..8dd72463 100644 --- a/capplets/default-applications/mate-da-capplet.c +++ b/capplets/default-applications/mate-da-capplet.c @@ -790,6 +790,7 @@ main(int argc, char** argv) g_option_context_add_main_entries(context, option_entries, GETTEXT_PACKAGE); capplet_init(context, &argc, &argv); + g_option_context_free(context); MateDACapplet* capplet = g_new0(MateDACapplet, 1); |