diff options
author | Zhang Xianwei <[email protected]> | 2018-01-15 18:56:00 +0800 |
---|---|---|
committer | monsta <[email protected]> | 2018-03-18 11:15:03 +0300 |
commit | 2151cb4b30c5b07ace23278b6aeeb82308482f55 (patch) | |
tree | a152860e1cd52a91bf27ef2e294b375ff23e5f93 /capplets | |
parent | ec443944becf65c1f2db33fa9f8ca20fa658c683 (diff) | |
download | mate-control-center-2151cb4b30c5b07ace23278b6aeeb82308482f55.tar.bz2 mate-control-center-2151cb4b30c5b07ace23278b6aeeb82308482f55.tar.xz |
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 <[email protected]>
Diffstat (limited to 'capplets')
-rw-r--r-- | capplets/appearance/theme-util.c | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/capplets/appearance/theme-util.c b/capplets/appearance/theme-util.c index 5f7b6c40..74b4f497 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; |