From: Dana Jansens Date: Tue, 25 Jan 2011 18:32:43 +0000 (-0500) Subject: skip empty strings when splitting paths in the environment X-Git-Tag: release-3.5.1~93 X-Git-Url: http://git.openbox.org/?p=dana%2Fopenbox.git;a=commitdiff_plain;h=30fe9697dfd7276a8d18cdecde9809eeec80bf0d skip empty strings when splitting paths in the environment --- diff --git a/obt/paths.c b/obt/paths.c index d2e230d..aa76b8e 100644 --- a/obt/paths.c +++ b/obt/paths.c @@ -88,8 +88,10 @@ static GSList* split_paths(const gchar *paths) if (!paths) return NULL; spl = g_strsplit(paths, ":", -1); - for (it = spl; *it; ++it) - list = slist_path_add(list, *it, (GSListFunc) g_slist_append); + for (it = spl; *it; ++it) { + if ((*it)[0]) /* skip empty strings */ + list = slist_path_add(list, *it, (GSListFunc) g_slist_append); + } g_free(spl); return list; }