aboutsummaryrefslogtreecommitdiff
path: root/src/db
diff options
context:
space:
mode:
Diffstat (limited to 'src/db')
-rw-r--r--src/db/ProxyDatabasePlugin.cxx3
1 files changed, 2 insertions, 1 deletions
diff --git a/src/db/ProxyDatabasePlugin.cxx b/src/db/ProxyDatabasePlugin.cxx
index e27ca829..5604daf1 100644
--- a/src/db/ProxyDatabasePlugin.cxx
+++ b/src/db/ProxyDatabasePlugin.cxx
@@ -120,7 +120,7 @@ Convert(enum tag_type tag_type)
}
static bool
-CheckError(const struct mpd_connection *connection, GError **error_r)
+CheckError(struct mpd_connection *connection, GError **error_r)
{
const auto error = mpd_connection_get_error(connection);
if (error == MPD_ERROR_SUCCESS)
@@ -128,6 +128,7 @@ CheckError(const struct mpd_connection *connection, GError **error_r)
g_set_error_literal(error_r, libmpdclient_quark(), (int)error,
mpd_connection_get_error_message(connection));
+ mpd_connection_clear_error(connection);
return false;
}