diff options
Diffstat (limited to '')
-rw-r--r-- | src/Main.cxx | 5 |
1 files changed, 4 insertions, 1 deletions
diff --git a/src/Main.cxx b/src/Main.cxx index b1960b5f2..418e69644 100644 --- a/src/Main.cxx +++ b/src/Main.cxx @@ -551,7 +551,10 @@ static int mpd_main_after_fork(struct options options) GlobalEvents::Register(GlobalEvents::SHUTDOWN, shutdown_event_emitted); #endif - ConfigureFS(); + if (!ConfigureFS(error)) { + LogError(error); + return EXIT_FAILURE; + } if (!glue_mapper_init(error)) { LogError(error); |