From c7697c9d6ac7df466063bf778d30801a99bc0cd7 Mon Sep 17 00:00:00 2001 From: Zhang Xianwei Date: Mon, 15 Jan 2018 18:56:00 +0800 Subject: theme-util.c: fix segfault on attempt to delete custom theme fixes https://github.com/mate-desktop/mate-control-center/issues/334 Signed-off-by: Zhang Xianwei --- capplets/appearance/theme-util.c | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) (limited to 'capplets/appearance') diff --git a/capplets/appearance/theme-util.c b/capplets/appearance/theme-util.c index 96beb2c2..ec8a2dd8 100644 --- a/capplets/appearance/theme-util.c +++ b/capplets/appearance/theme-util.c @@ -99,8 +99,8 @@ gboolean theme_delete (const gchar *name, ThemeType type) break; case THEME_TYPE_META: - theme = (MateThemeCommonInfo *) mate_theme_info_find (name); - theme_dir = g_strdup (theme->path); + theme = (MateThemeCommonInfo *) mate_theme_meta_info_find (name); + theme_dir = g_path_get_dirname (theme->path); del_empty_parent = FALSE; break; -- cgit v1.2.1