path: fix user path resolution

Forgot to add the remainder to the path.
This commit is contained in:
wm4 2015-05-01 22:33:56 +02:00
parent fd7bf9c07a
commit dd2c65429f
1 changed files with 2 additions and 2 deletions

View File

@ -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);
}
}
}