aboutsummaryrefslogtreecommitdiffstats
path: root/src/main.c
diff options
context:
space:
mode:
Diffstat (limited to 'src/main.c')
-rw-r--r--src/main.c5
1 files changed, 3 insertions, 2 deletions
diff --git a/src/main.c b/src/main.c
index a57a19a81..e73f5ade0 100644
--- a/src/main.c
+++ b/src/main.c
@@ -182,9 +182,10 @@ glue_db_init_and_load(void)
if (!ret) {
g_warning("Failed to load database: %s", error->message);
g_error_free(error);
+ error = NULL;
- if (!db_check())
- exit(EXIT_FAILURE);
+ if (!db_check(&error))
+ MPD_ERROR("%s", error->message);
db_clear();