diff options
author | Tomas Bzatek <[email protected]> | 2020-07-20 17:35:59 +0200 |
---|---|---|
committer | Pablo Barciela <[email protected]> | 2020-08-03 13:46:34 +0200 |
commit | 0d802f43b13a8bbb2bd3f11a3d1314ff693f740f (patch) | |
tree | 37a54c47403c420646c7972b4a56d136392aa3f3 | |
parent | 48c444e11dcd8879adbf08dffc1b034b020f1e3b (diff) | |
download | mate-panel-0d802f43b13a8bbb2bd3f11a3d1314ff693f740f.tar.bz2 mate-panel-0d802f43b13a8bbb2bd3f11a3d1314ff693f740f.tar.xz |
panel-properties-dialog: Fix leaking string
-rw-r--r-- | mate-panel/panel-properties-dialog.c | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/mate-panel/panel-properties-dialog.c b/mate-panel/panel-properties-dialog.c index f71c126a..549ad2e2 100644 --- a/mate-panel/panel-properties-dialog.c +++ b/mate-panel/panel-properties-dialog.c @@ -877,6 +877,7 @@ panel_properties_dialog_new (PanelToplevel *toplevel, dialog->background_settings = g_settings_new_with_path (PANEL_TOPLEVEL_BACKGROUND_SCHEMA, toplevel_background_path); g_free (toplevel_background_path); + g_free (toplevel_settings_path); g_signal_connect (dialog->settings, "changed", |