diff options
author | rbuj <[email protected]> | 2021-10-22 14:44:46 +0200 |
---|---|---|
committer | Luke from DC <[email protected]> | 2022-02-09 04:18:44 +0000 |
commit | f55958b8fa846389d30fb4c4a53855949831c590 (patch) | |
tree | 46c0de4a4d087147b02bce9126f5780f153d0b3f /capplets | |
parent | adb7473aa58143cfcba554e3d8d35943f850f362 (diff) | |
download | mate-control-center-f55958b8fa846389d30fb4c4a53855949831c590.tar.bz2 mate-control-center-f55958b8fa846389d30fb4c4a53855949831c590.tar.xz |
common: fix memory leak detected by scan-build
Diffstat (limited to 'capplets')
-rw-r--r-- | capplets/common/mate-theme-info.c | 7 |
1 files changed, 5 insertions, 2 deletions
diff --git a/capplets/common/mate-theme-info.c b/capplets/common/mate-theme-info.c index 1294b7d2..ea9a6635 100644 --- a/capplets/common/mate-theme-info.c +++ b/capplets/common/mate-theme-info.c @@ -1213,11 +1213,14 @@ real_add_top_theme_dir_monitor (GFile *uri, tuple->priority = priority; /* Monitor the top directory */ - monitor = g_file_monitor_directory (uri, G_FILE_MONITOR_NONE, NULL, NULL); - if (monitor != NULL) { + if ((monitor = g_file_monitor_directory (uri, G_FILE_MONITOR_NONE, NULL, NULL)) != NULL) { g_signal_connect (monitor, "changed", (GCallback) (icon_theme ? top_icon_theme_dir_changed : top_theme_dir_changed), tuple); + } else { + g_hash_table_destroy (tuple->handle_hash); + g_free (tuple); + return FALSE; } /* Go through the directory to add monitoring */ |