BUG/MEDIUM: config: a stats-less config crashes in 1.5-dev25

John-Paul Bader reported a stupid regression in 1.5-dev25, we
forget to check that global.stats_fe is initialized before visiting
its sockets, resulting in a crash.

No backport is needed.
diff --git a/src/cfgparse.c b/src/cfgparse.c
index decdcfd..9ec69a1 100644
--- a/src/cfgparse.c
+++ b/src/cfgparse.c
@@ -6950,7 +6950,7 @@
 	}
 
 	/* Check multi-process mode compatibility */
-	if (global.nbproc > 1) {
+	if (global.nbproc > 1 && global.stats_fe) {
 		list_for_each_entry(bind_conf, &global.stats_fe->conf.bind, by_fe) {
 			unsigned long mask;