From 09252d4b5eecf6068ce45039299dd904d0e6389e Mon Sep 17 00:00:00 2001 From: Rob Bradford Date: Fri, 26 Jul 2013 16:29:45 +0100 Subject: [PATCH] desktop-shell: Refactor launcher configuration reading to avoid leaking --- clients/desktop-shell.c | 4 +--- 1 file changed, 1 insertion(+), 3 deletions(-) diff --git a/clients/desktop-shell.c b/clients/desktop-shell.c index eb550c8d..ad324ba7 100644 --- a/clients/desktop-shell.c +++ b/clients/desktop-shell.c @@ -1205,15 +1205,13 @@ panel_add_launchers(struct panel *panel, struct desktop *desktop) if (icon != NULL && path != NULL) { panel_add_launcher(panel, icon, path); + count++; } else { fprintf(stderr, "invalid launcher section\n"); - continue; } free(icon); free(path); - - count++; } if (count == 0) {