From 34a317e1ccb0053d49383eb5e2f73dec97affc4c Mon Sep 17 00:00:00 2001 From: David Herrmann Date: Thu, 8 Jan 2015 16:13:39 +0100 Subject: [PATCH] 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. --- src/dbus1-generator/dbus1-generator.c | 1 + 1 file changed, 1 insertion(+) diff --git a/src/dbus1-generator/dbus1-generator.c b/src/dbus1-generator/dbus1-generator.c index 10a33efee..ca737e3d1 100644 --- a/src/dbus1-generator/dbus1-generator.c +++ b/src/dbus1-generator/dbus1-generator.c @@ -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; -- 2.30.2