X-Git-Url: https://git.dogcows.com/gitweb?a=blobdiff_plain;f=obt%2Fpaths.c;h=f2d4b420848efeb3677123341f28560d0b329999;hb=9f31f80ce8adaa4c4cc899e7ab9106d971fe4e96;hp=bd6c177a708a30c885dfca940d9dfb4d8f50d072;hpb=19e051a46601d7190dabfabcf886b1e17567ac8c;p=chaz%2Fopenbox diff --git a/obt/paths.c b/obt/paths.c index bd6c177a..f2d4b420 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; } @@ -237,6 +239,7 @@ void obt_paths_unref(ObtPaths *p) g_free(p->config_home); g_free(p->data_home); g_free(p->cache_home); + g_free(p->gid); g_slice_free(ObtPaths, p); } @@ -332,7 +335,7 @@ static inline gboolean try_exec(const ObtPaths *const p, const gchar *const path) { struct stat st; - BSEARCH_SETUP(guint); + BSEARCH_SETUP(); if (stat(path, &st) != 0) return FALSE;