From 35494158c8608525a38457bbf3412d19ae18e845 Mon Sep 17 00:00:00 2001 From: Eric Wong Date: Tue, 9 Sep 2008 09:59:34 +0200 Subject: storedPlaylist: correctly expand path when writing Otherwise we'd be writing to whatever directory that mpd is running in. --- src/storedPlaylist.c | 11 ++++++----- 1 file changed, 6 insertions(+), 5 deletions(-) diff --git a/src/storedPlaylist.c b/src/storedPlaylist.c index fef8a70f3..512a29b7c 100644 --- a/src/storedPlaylist.c +++ b/src/storedPlaylist.c @@ -59,22 +59,23 @@ static ListNode *nodeOfStoredPlaylist(List *list, int idx) } static enum playlist_result -writeStoredPlaylistToPath(List *list, const char *fspath) +writeStoredPlaylistToPath(List *list, const char *utf8path) { ListNode *node; FILE *file; char *s; + char path_max_tmp[MPD_PATH_MAX]; + + assert(utf8path != NULL); - assert(fspath != NULL); + utf8_to_fs_playlist_path(path_max_tmp, utf8path); - while (!(file = fopen(fspath, "w")) && errno == EINTR); + while (!(file = fopen(path_max_tmp, "w")) && errno == EINTR); if (file == NULL) return PLAYLIST_RESULT_ERRNO; node = list->firstNode; while (node != NULL) { - char path_max_tmp[MPD_PATH_MAX]; - s = utf8_to_fs_charset(path_max_tmp, (char *)node->data); if (playlist_saveAbsolutePaths && !isValidRemoteUtf8Url(s)) s = rmp2amp_r(path_max_tmp, s); -- cgit v1.2.3