projects
/
dana
/
openbox.git
/ commitdiff
commit
grep
author
committer
pickaxe
?
search:
re
summary
|
shortlog
|
log
|
commit
| commitdiff |
tree
raw
|
patch
| inline |
side by side
(parent:
3479dc9
)
skip empty strings when splitting paths in the environment
author
Dana Jansens
<danakj@orodu.net>
Tue, 25 Jan 2011 18:32:43 +0000
(13:32 -0500)
committer
Dana Jansens
<danakj@orodu.net>
Sun, 16 Oct 2011 22:54:04 +0000
(18:54 -0400)
obt/paths.c
patch
|
blob
|
history
diff --git
a/obt/paths.c
b/obt/paths.c
index d2e230dffd028e39cf144b6811c559536eda2e0c..aa76b8efd36fbe63f898ffa559ce0164022851a0 100644
(file)
--- 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;
}