chiark / gitweb /
sd-bus: explicitly cast asprintf() return value away we are not interested in
authorLennart Poettering <lennart@poettering.net>
Mon, 27 Oct 2014 12:06:11 +0000 (13:06 +0100)
committerLennart Poettering <lennart@poettering.net>
Mon, 27 Oct 2014 12:06:20 +0000 (13:06 +0100)
Let's give coverity a hint what's going on here.

src/libsystemd/sd-bus/sd-bus.c

index c2931a7f7b09e9292cace68ad067a55d461bdf2e..03ec6036fab17c864595760b9c87c9de173aba65 100644 (file)
@@ -1157,13 +1157,13 @@ int bus_set_address_user(sd_bus *b) {
                         return -ENOMEM;
 
 #ifdef ENABLE_KDBUS
-                asprintf(&b->address, KERNEL_USER_BUS_FMT ";" UNIX_USER_BUS_FMT, getuid(), ee);
+                (void) asprintf(&b->address, KERNEL_USER_BUS_FMT ";" UNIX_USER_BUS_FMT, getuid(), ee);
 #else
-                asprintf(&b->address, UNIX_USER_BUS_FMT, ee);
+                (void) asprintf(&b->address, UNIX_USER_BUS_FMT, ee);
 #endif
         } else {
 #ifdef ENABLE_KDBUS
-                asprintf(&b->address, KERNEL_USER_BUS_FMT, getuid());
+                (void) asprintf(&b->address, KERNEL_USER_BUS_FMT, getuid());
 #else
                 return -ECONNREFUSED;
 #endif