diff options
author | Tomas Bzatek <[email protected]> | 2020-07-20 17:35:59 +0200 |
---|---|---|
committer | Luke from DC <[email protected]> | 2020-07-29 20:47:20 +0000 |
commit | 35bd00e59e3aeedd61da46ec961e06623900359c (patch) | |
tree | 2848dc8305de15b2ada0412f66a1752968151cc7 | |
parent | a1db813cd47ca495f9481f2874ecfeb74ea120b5 (diff) | |
download | mate-panel-35bd00e59e3aeedd61da46ec961e06623900359c.tar.bz2 mate-panel-35bd00e59e3aeedd61da46ec961e06623900359c.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 ad0389e9..95ffd00d 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", |