forked from pool/systemd
Marcus Meissner
5aeb3c6333
- Add 0001-acpi-fptd-fix-memory-leak-in-acpi_get_boot_usec.patch: fix acpi memleak. - Add 0002-fix-lingering-references-to-var-lib-backlight-random.patch: fix invalid path in documentation. - Add 0003-acpi-make-sure-we-never-free-an-uninitialized-pointe.patch: fix invalid memory free. - Add 0004-systemctl-fix-name-mangling-for-sysv-units.patch: fix name mangling for sysv units. - Add 0005-cryptsetup-fix-OOM-handling-when-parsing-mount-optio.patch: fix OOM handling. - Add 0006-journald-add-missing-error-check.patch: add missing error check. - Add 0007-bus-fix-potentially-uninitialized-memory-access.patch: fix uninitialized memory access. - Add 0008-dbus-fix-return-value-of-dispatch_rqueue.patch: fix return value. - Add 0009-modules-load-fix-error-handling.patch: fix error handling. - Add 0010-efi-never-call-qsort-on-potentially-NULL-arrays.patch: fix incorrect memory access. - Add 0011-strv-don-t-access-potentially-NULL-string-arrays.patch: fix incorrect memory access. - Add 0012-mkdir-pass-a-proper-function-pointer-to-mkdir_safe_i.patch: fix invalid pointer. - Add 0014-tmpfiles.d-include-setgid-perms-for-run-log-journal.patch: OBS-URL: https://build.opensuse.org/request/show/202117 OBS-URL: https://build.opensuse.org/package/show/Base:System/systemd?expand=0&rev=452
31 lines
858 B
Diff
31 lines
858 B
Diff
From 2e8d788c2f90d062f208f8c57a97e7b33cb29f7d Mon Sep 17 00:00:00 2001
|
|
From: Lennart Poettering <lennart@poettering.net>
|
|
Date: Wed, 2 Oct 2013 19:37:30 +0200
|
|
Subject: [PATCH 08/15] dbus: fix return value of dispatch_rqueue()
|
|
|
|
---
|
|
src/libsystemd-bus/sd-bus.c | 4 ++--
|
|
1 file changed, 2 insertions(+), 2 deletions(-)
|
|
|
|
diff --git a/src/libsystemd-bus/sd-bus.c b/src/libsystemd-bus/sd-bus.c
|
|
index 3f766fb..db0880f 100644
|
|
--- a/src/libsystemd-bus/sd-bus.c
|
|
+++ b/src/libsystemd-bus/sd-bus.c
|
|
@@ -1215,11 +1215,11 @@ static int dispatch_rqueue(sd_bus *bus, sd_bus_message **m) {
|
|
if (r == 0)
|
|
return ret;
|
|
|
|
- r = 1;
|
|
+ ret = 1;
|
|
} while (!z);
|
|
|
|
*m = z;
|
|
- return 1;
|
|
+ return ret;
|
|
}
|
|
|
|
int sd_bus_send(sd_bus *bus, sd_bus_message *m, uint64_t *serial) {
|
|
--
|
|
1.8.4
|
|
|