summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorrbuj <[email protected]>2021-10-21 18:00:37 +0200
committerraveit65 <[email protected]>2023-05-07 17:08:35 +0200
commit5431e81a503e9bb744771be6eab2d235e9445fd6 (patch)
tree59cc771fcc16d2d6f8fe8de41ee1a27c8207c09f
parentf13479d193c89eb5a497e06ad16657ee6850f896 (diff)
downloadmate-control-center-5431e81a503e9bb744771be6eab2d235e9445fd6.tar.bz2
mate-control-center-5431e81a503e9bb744771be6eab2d235e9445fd6.tar.xz
common: fix memory leak
-rw-r--r--capplets/common/mate-theme-info.c1
1 files changed, 1 insertions, 0 deletions
diff --git a/capplets/common/mate-theme-info.c b/capplets/common/mate-theme-info.c
index 01c83eec..6971602e 100644
--- a/capplets/common/mate-theme-info.c
+++ b/capplets/common/mate-theme-info.c
@@ -1560,6 +1560,7 @@ void mate_theme_meta_info_free(MateThemeMetaInfo* meta_theme_info)
g_free (meta_theme_info->path);
g_free (meta_theme_info->sound_theme_name);
g_free (meta_theme_info->windowtitle_font);
+ g_free (meta_theme_info->readable_name);
g_free (meta_theme_info);
}