aboutsummaryrefslogtreecommitdiffstats
path: root/src/command.c
diff options
context:
space:
mode:
authorMax Kellermann <max@duempel.org>2009-01-04 18:59:32 +0100
committerMax Kellermann <max@duempel.org>2009-01-04 18:59:32 +0100
commit8c5470a3db7f36cc50b8f5591c8b1f1410977581 (patch)
tree55c8fc398adc080e46b6c14024cb3c71b5b29b6b /src/command.c
parent49ac6fa99672bf012b2ce8b39eae0c89cabb8465 (diff)
downloadmpd-8c5470a3db7f36cc50b8f5591c8b1f1410977581.tar.gz
mpd-8c5470a3db7f36cc50b8f5591c8b1f1410977581.tar.xz
mpd-8c5470a3db7f36cc50b8f5591c8b1f1410977581.zip
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.
Diffstat (limited to 'src/command.c')
-rw-r--r--src/command.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/src/command.c b/src/command.c
index 19aeaba32..8fb20a5d6 100644
--- a/src/command.c
+++ b/src/command.c
@@ -591,7 +591,7 @@ handle_load(struct client *client, G_GNUC_UNUSED int argc, char *argv[])
{
enum playlist_result result;
- result = loadPlaylist(client, argv[1]);
+ result = loadPlaylist(argv[1]);
return print_playlist_result(client, result);
}