From: Cong Wang <1209787+congwang@users.noreply.github.com> Date: Thu, 14 Dec 2017 12:07:04 +0000 (-0800) Subject: sd-bus: fix a memory leak in message_new_reply() (#7636) X-Git-Tag: v236~9 X-Git-Url: http://git.ipfire.org/cgi-bin/gitweb.cgi?a=commitdiff_plain;h=f581267a021546daa0c8c9aec2c1a3107964c118;p=thirdparty%2Fsystemd.git sd-bus: fix a memory leak in message_new_reply() (#7636) Signed-off-by: Cong Wang --- diff --git a/src/libsystemd/sd-bus/bus-message.c b/src/libsystemd/sd-bus/bus-message.c index 9d4ac8ee0fd..219cff1f6e7 100644 --- a/src/libsystemd/sd-bus/bus-message.c +++ b/src/libsystemd/sd-bus/bus-message.c @@ -707,6 +707,7 @@ static int message_new_reply( sd_bus_message **m) { sd_bus_message *t; + uint64_t cookie; int r; assert_return(call, -EINVAL); @@ -715,6 +716,10 @@ static int message_new_reply( assert_return(call->bus->state != BUS_UNSET, -ENOTCONN); assert_return(m, -EINVAL); + cookie = BUS_MESSAGE_COOKIE(call); + if (cookie == 0) + return -EOPNOTSUPP; + r = sd_bus_message_new(call->bus, &t, type); if (r < 0) return -ENOMEM; @@ -722,10 +727,7 @@ static int message_new_reply( assert(t); t->header->flags |= BUS_MESSAGE_NO_REPLY_EXPECTED; - t->reply_cookie = BUS_MESSAGE_COOKIE(call); - if (t->reply_cookie == 0) - return -EOPNOTSUPP; - + t->reply_cookie = cookie; r = message_append_reply_cookie(t, t->reply_cookie); if (r < 0) goto fail;