diff options
Diffstat (limited to 'src/database.c')
-rw-r--r-- | src/database.c | 6 |
1 files changed, 5 insertions, 1 deletions
diff --git a/src/database.c b/src/database.c index 814811454..e25461c33 100644 --- a/src/database.c +++ b/src/database.c @@ -282,6 +282,7 @@ db_load(GError **error) struct stat st; char buffer[100]; bool found_charset = false, found_version = false; + bool success; assert(database_path != NULL); assert(music_root != NULL); @@ -357,9 +358,12 @@ db_load(GError **error) g_debug("reading DB"); - directory_load(fp, music_root); + success = directory_load(fp, music_root, error); while (fclose(fp) && errno == EINTR) ; + if (!success) + return false; + stats_update(); if (stat(database_path, &st) == 0) |