From 1bd551bce48e8291231892b426ecfe4861ef3405 Mon Sep 17 00:00:00 2001 From: Donncha O'Cearbhaill Date: Wed, 28 Jun 2017 23:37:57 +0200 Subject: [PATCH] Fix panic when a .desktop file has an empty Exec= line --- sgfw/icons.go | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/sgfw/icons.go b/sgfw/icons.go index 0366e7a..9fea2b0 100644 --- a/sgfw/icons.go +++ b/sgfw/icons.go @@ -67,7 +67,7 @@ func loadDesktopFile(path string) { } else if len(line) > 0 && line[0] == '[' { inDE = false } - if inDE && strings.HasPrefix(line, "Exec=") { + if inDE && len(line) > 5 && strings.HasPrefix(line, "Exec=") { exec = strings.Fields(line[5:])[0] } if inDE && strings.HasPrefix(line, "Icon=") {