From: Dana Jansens Date: Sun, 24 Jul 2011 23:29:26 +0000 (-0400) Subject: Properly build path names for TryExec X-Git-Url: http://git.openbox.org/?a=commitdiff_plain;h=08b3e125f18871dd0408d7528988b12241b32601;p=dana%2Fopenbox.git Properly build path names for TryExec --- diff --git a/obt/paths.c b/obt/paths.c index f2d4b420..25cb6b0e 100644 --- a/obt/paths.c +++ b/obt/paths.c @@ -359,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;