From dd2c65429ff918112dfe107513d56c7da2e0f0fd Mon Sep 17 00:00:00 2001 From: wm4 Date: Fri, 1 May 2015 22:33:56 +0200 Subject: path: fix user path resolution Forgot to add the remainder to the path. --- options/path.c | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) (limited to 'options/path.c') diff --git a/options/path.c b/options/path.c index 8b1ae9777d..742e292eb1 100644 --- a/options/path.c +++ b/options/path.c @@ -185,8 +185,8 @@ char *mp_get_user_path(void *talloc_ctx, struct mpv_global *global, } else { char type[80]; snprintf(type, sizeof(type), "%.*s", BSTR_P(prefix)); - res = talloc_strdup(talloc_ctx, - mp_get_platform_path(talloc_ctx, type)); + const char *p = mp_get_platform_path(talloc_ctx, type); + res = mp_path_join(talloc_ctx, bstr0(p), rest); } } } -- cgit v1.2.3