diff options
author | Tomas Bzatek <[email protected]> | 2020-07-17 16:59:06 +0200 |
---|---|---|
committer | Pablo Barciela <[email protected]> | 2020-08-03 13:46:34 +0200 |
commit | 96b1172619cc4bb044e6ba30210800b645651002 (patch) | |
tree | 987332f16df2a3bb55aeb8c6ee2ccb9b70901886 | |
parent | 1f3f6abed34239cc056c4dcf2f1f890cd9572d6c (diff) | |
download | mate-panel-96b1172619cc4bb044e6ba30210800b645651002.tar.bz2 mate-panel-96b1172619cc4bb044e6ba30210800b645651002.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 ebbe31f7..03d7143d 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 * |