dbus1-generator: fix array sentinal

Add a {} sentinal entry so the config-iterator can properly iterate all
array elements. Fixes a segfault in the dbus1-generator.
This commit is contained in:
David Herrmann 2015-01-08 16:13:39 +01:00
parent 3383f7e956
commit 34a317e1cc

View file

@ -155,6 +155,7 @@ static int add_dbus(const char *path, const char *fname, const char *type) {
{ "D-BUS Service", "Exec", config_parse_string, 0, &exec },
{ "D-BUS Service", "User", config_parse_string, 0, &user },
{ "D-BUS Service", "SystemdService", config_parse_string, 0, &service },
{ },
};
char *p;