chiark / gitweb /
dbus1-generator: fix array sentinal
authorDavid Herrmann <dh.herrmann@gmail.com>
Thu, 8 Jan 2015 15:13:39 +0000 (16:13 +0100)
committerDavid Herrmann <dh.herrmann@gmail.com>
Thu, 8 Jan 2015 15:13:39 +0000 (16:13 +0100)
Add a {} sentinal entry so the config-iterator can properly iterate all
array elements. Fixes a segfault in the dbus1-generator.

src/dbus1-generator/dbus1-generator.c

index 10a33efee5f0fe013d575ec61206dcd9e8e5e036..ca737e3d1bf77d3ad260353198a135e756e65544 100644 (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;