From: Lennart Poettering Date: Fri, 28 Nov 2014 15:30:53 +0000 (+0100) Subject: sd-bus: make sure %m resolves to the specified error in bus_error_set_errnofv() X-Git-Tag: v218~253 X-Git-Url: http://www.chiark.greenend.org.uk/ucgi/~ianmdlvl/git?p=elogind.git;a=commitdiff_plain;h=1797280193ea25a91cc38332c7cee34ba01e7808;hp=818eae495ecc1a19d1906bafa6e3a61fe6171f50 sd-bus: make sure %m resolves to the specified error in bus_error_set_errnofv() --- diff --git a/src/libsystemd/sd-bus/bus-error.c b/src/libsystemd/sd-bus/bus-error.c index cfb8d147a..47f90c26f 100644 --- a/src/libsystemd/sd-bus/bus-error.c +++ b/src/libsystemd/sd-bus/bus-error.c @@ -444,6 +444,7 @@ _public_ int sd_bus_error_set_errno(sd_bus_error *e, int error) { } int bus_error_set_errnofv(sd_bus_error *e, int error, const char *format, va_list ap) { + PROTECT_ERRNO; int r; if (error < 0) @@ -477,8 +478,9 @@ int bus_error_set_errnofv(sd_bus_error *e, int error, const char *format, va_lis if (format) { char *m; - /* First, let's try to fill in the supplied message */ + /* Then, let's try to fill in the supplied message */ + errno = error; /* Make sure that %m resolves to the specified error */ r = vasprintf(&m, format, ap); if (r >= 0) {