diff options
| author | Dana Jansens <danakj@orodu.net> | 2011-07-24 19:29:26 -0400 |
|---|---|---|
| committer | Dana Jansens <danakj@orodu.net> | 2012-09-30 14:57:24 -0400 |
| commit | 69672e9d07381d088049e113da63b5beb7e90636 (patch) | |
| tree | 47382ff97981b325a7cff1287770d5ba46e4a01b | |
| parent | 9f31f80ce8adaa4c4cc899e7ab9106d971fe4e96 (diff) | |
Properly build path names for obt_paths_try_exec
| -rw-r--r-- | obt/paths.c | 2 |
1 files changed, 1 insertions, 1 deletions
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; |
