From 8c5470a3db7f36cc50b8f5591c8b1f1410977581 Mon Sep 17 00:00:00 2001 From: Max Kellermann Date: Sun, 4 Jan 2009 18:59:32 +0100 Subject: playlist: log errors during loadPlaylist() Don't call command_error() if loading a song from the playlist fails. This may result in assertion failures, since command_error() may be called more than once. --- src/playlist.c | 5 ++--- 1 file changed, 2 insertions(+), 3 deletions(-) (limited to 'src/playlist.c') diff --git a/src/playlist.c b/src/playlist.c index f62e67db2..414e5a63a 100644 --- a/src/playlist.c +++ b/src/playlist.c @@ -1333,7 +1333,7 @@ int PlaylistInfo(struct client *client, const char *utf8file, int detail) return 0; } -enum playlist_result loadPlaylist(struct client *client, const char *utf8file) +enum playlist_result loadPlaylist(const char *utf8file) { GPtrArray *list; @@ -1352,8 +1352,7 @@ enum playlist_result loadPlaylist(struct client *client, const char *utf8file) p++; } if ((addToPlaylist(temp, NULL)) != PLAYLIST_RESULT_SUCCESS) { - command_error(client, ACK_ERROR_PLAYLIST_LOAD, - "can't add file \"%s\"", temp2); + g_warning("can't add file \"%s\"", temp2); } free(temp2); } -- cgit v1.2.3