all repos — tint2 @ b196bb1c00a83487e343d65b8076aa8783d87c44

fork of the tint2 desktop panel for my custom setup - only minimized windows across all desktops for the taskbar

Fix small memory leak in launcher
o9000 mrovi9000@gmail.com
commit

b196bb1c00a83487e343d65b8076aa8783d87c44

parent

402713d4b15236521387d77ecb21591da011e5a2

1 files changed, 1 insertions(+), 1 deletions(-)

jump to
M src/launcher/launcher.csrc/launcher/launcher.c

@@ -457,10 +457,10 @@ launcherIcon->cmd = strdup(entry.exec);

launcherIcon->icon_name = entry.icon ? strdup(entry.icon) : strdup(DEFAULT_ICON); launcherIcon->icon_size = 1; launcherIcon->icon_tooltip = entry.name ? strdup(entry.name) : strdup(entry.exec); - free_desktop_entry(&entry); launcher->list_icons = g_slist_append(launcher->list_icons, launcherIcon); add_area(&launcherIcon->area, (Area *)launcher); } + free_desktop_entry(&entry); app = g_slist_next(app); } }