diff options
author | rbuj <[email protected]> | 2021-10-21 18:00:37 +0200 |
---|---|---|
committer | mbkma <[email protected]> | 2021-11-07 20:55:24 +0100 |
commit | 2794ea258a5b6acdcca4239cefdf5fbadfcb9e6e (patch) | |
tree | b36961eea3d2e63c036e6a488051a325d7eb27c8 /capplets/common/mate-theme-info.c | |
parent | 914efafed0b720bbec07db72f8eb404fb80ddbe2 (diff) | |
download | mate-control-center-2794ea258a5b6acdcca4239cefdf5fbadfcb9e6e.tar.bz2 mate-control-center-2794ea258a5b6acdcca4239cefdf5fbadfcb9e6e.tar.xz |
common: fix memory leak
Diffstat (limited to 'capplets/common/mate-theme-info.c')
-rw-r--r-- | capplets/common/mate-theme-info.c | 1 |
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); } |