diff options
author | Tomas Bzatek <[email protected]> | 2020-07-17 16:59:06 +0200 |
---|---|---|
committer | Luke from DC <[email protected]> | 2020-07-29 20:47:20 +0000 |
commit | 2db605da98f87dff0a2d4eb25536ab324b8c2854 (patch) | |
tree | af3b86111181af47c7bbe964d7287df8bdda0f20 | |
parent | 80014e212924b6be4f5c4a3985d90c271828c5b2 (diff) | |
download | mate-panel-2db605da98f87dff0a2d4eb25536ab324b8c2854.tar.bz2 mate-panel-2db605da98f87dff0a2d4eb25536ab324b8c2854.tar.xz |
launcher: Fix leaking strings
-rw-r--r-- | mate-panel/launcher.c | 2 |
1 files changed, 2 insertions, 0 deletions
diff --git a/mate-panel/launcher.c b/mate-panel/launcher.c index a6ef4be0..3c1886a4 100644 --- a/mate-panel/launcher.c +++ b/mate-panel/launcher.c @@ -655,6 +655,8 @@ setup_button (Launcher *launcher) button_widget_set_icon_name (BUTTON_WIDGET (launcher->button), icon); g_free (icon); + g_free (name); + g_free (comment); } static char * |