all repos — openbox @ 30fe9697dfd7276a8d18cdecde9809eeec80bf0d

openbox fork - make it a bit more like ryudo

skip empty strings when splitting paths in the environment
Dana Jansens danakj@orodu.net
commit

30fe9697dfd7276a8d18cdecde9809eeec80bf0d

parent

5ced1a06fca5bd1ae31670d12848c8cde80dab5f

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

jump to
M obt/paths.cobt/paths.c

@@ -88,8 +88,10 @@

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; }