X-Git-Url: https://git.dogcows.com/gitweb?a=blobdiff_plain;f=obt%2Fpaths.c;h=25cb6b0eb58c7a4c415f3c24dd7dd2d9d8da8498;hb=4e6c0086a657399d989f2e4849f7b397d7d4efbc;hp=b20eb48d1139459cbaf2e99e9bb0b497528494e2;hpb=5e424b81d24d82f7584ea175cd6579baba3695d7;p=chaz%2Fopenbox diff --git a/obt/paths.c b/obt/paths.c index b20eb48d..25cb6b0e 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; } @@ -231,9 +233,13 @@ void obt_paths_unref(ObtPaths *p) for (it = p->autostart_dirs; it; it = g_slist_next(it)) g_free(it->data); g_slist_free(p->autostart_dirs); + for (it = p->exec_dirs; it; it = g_slist_next(it)) + g_free(it->data); + g_slist_free(p->exec_dirs); g_free(p->config_home); g_free(p->data_home); g_free(p->cache_home); + g_free(p->gid); g_slice_free(ObtPaths, p); } @@ -329,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; @@ -353,7 +359,7 @@ gboolean obt_paths_try_exec(ObtPaths *p, const gchar *path) GSList *it; for (it = p->exec_dirs; it; it = g_slist_next(it)) { - gchar *f = g_strdup_printf(it->data, G_DIR_SEPARATOR_S, path); + gchar *f = g_build_filename(it->data, path, NULL); gboolean e = try_exec(p, f); g_free(f); if (e) return TRUE;