[systemd-commits] src/libsystemd-bus

Lennart Poettering lennart at kemper.freedesktop.org
Wed Oct 30 02:38:58 CET 2013


 src/libsystemd-bus/bus-match.c   |    2 +-
 src/libsystemd-bus/bus-objects.c |    2 +-
 2 files changed, 2 insertions(+), 2 deletions(-)

New commits:
commit 38911893c55adfe0ec2c01785dfa49059b409d69
Author: Lennart Poettering <lennart at poettering.net>
Date:   Wed Oct 30 02:38:52 2013 +0100

    bus: fix build

diff --git a/src/libsystemd-bus/bus-match.c b/src/libsystemd-bus/bus-match.c
index 49fc633..61b8a5c 100644
--- a/src/libsystemd-bus/bus-match.c
+++ b/src/libsystemd-bus/bus-match.c
@@ -153,7 +153,7 @@ static bool value_node_test(
                  * should contain all well-known names of the sender,
                  * hence we can fix things there correctly. */
 
-                if (node->value.str[0] != ':' && value_str[0] == ':')
+                if (node->value.str[0] != ':' && value_str && value_str[0] == ':')
                         return true;
 
                 return false;
diff --git a/src/libsystemd-bus/bus-objects.c b/src/libsystemd-bus/bus-objects.c
index 5867907..05d0015 100644
--- a/src/libsystemd-bus/bus-objects.c
+++ b/src/libsystemd-bus/bus-objects.c
@@ -600,7 +600,7 @@ static int property_get_all_callbacks_run(
         if (r < 0)
                 return r;
 
-        found_interface =
+        found_interface = !iface ||
                 streq(iface, "org.freedesktop.DBus.Properties") ||
                 streq(iface, "org.freedesktop.DBus.Peer") ||
                 streq(iface, "org.freedesktop.DBus.Introspectable");



More information about the systemd-commits mailing list