From ca419c84b83d017c3e4309e22f92273500197eea Mon Sep 17 00:00:00 2001 From: Max Kellermann Date: Sun, 11 Sep 2011 07:41:25 +0200 Subject: stored_playlist: return GError, code is playlist_result Improve error reporting and handling. command.c gets the new function print_error(), which sends a GError to the client. --- src/playlist_save.c | 10 +++++----- 1 file changed, 5 insertions(+), 5 deletions(-) (limited to 'src/playlist_save.c') diff --git a/src/playlist_save.c b/src/playlist_save.c index e86cbcec1..b8e03ea85 100644 --- a/src/playlist_save.c +++ b/src/playlist_save.c @@ -110,15 +110,15 @@ spl_save_playlist(const char *name_utf8, const struct playlist *playlist) return spl_save_queue(name_utf8, &playlist->queue); } -enum playlist_result +bool playlist_load_spl(struct playlist *playlist, struct player_control *pc, - const char *name_utf8) + const char *name_utf8, GError **error_r) { GPtrArray *list; - list = spl_load(name_utf8); + list = spl_load(name_utf8, error_r); if (list == NULL) - return PLAYLIST_RESULT_NO_SUCH_LIST; + return false; for (unsigned i = 0; i < list->len; ++i) { const char *temp = g_ptr_array_index(list, i); @@ -139,5 +139,5 @@ playlist_load_spl(struct playlist *playlist, struct player_control *pc, } spl_free(list); - return PLAYLIST_RESULT_SUCCESS; + return true; } -- cgit v1.2.3