cms-static: Don't crash on outputs with NULL name
diff --git a/src/cms-static.c b/src/cms-static.c
index b3fbe5e..53f2f84 100644
--- a/src/cms-static.c
+++ b/src/cms-static.c
@@ -46,6 +46,8 @@
 
 	weston_log("cms-static: output %i [%s] created\n", o->id, o->name);
 
+	if (o->name == NULL)
+		return;
 	s = weston_config_get_section(cms->ec->config,
 				      "output", "name", o->name);
 	if (s == NULL)