sd-bus: make sure bus_map_all_properties() handle booleans right
authorLennart Poettering <lennart@poettering.net>
Wed, 15 Jun 2016 20:41:56 +0000 (22:41 +0200)
committerLennart Poettering <lennart@poettering.net>
Tue, 21 Jun 2016 11:20:48 +0000 (13:20 +0200)
commit43dcc86a137b5c1192eca67c345b73a9ccc4dccb
tree06f58aae378d181bfcb4915c67047eeaf731059f
parent943ef07ce0aacbee93c721e461c02d651ee9ef6a
sd-bus: make sure bus_map_all_properties() handle booleans right

sd-bus generally exposes bools as "int" instead of "bool" in the public API.
This is relevant when unmarshaling booleans, as the relevant functions expect
an int* pointer and no bool* pointer. Since sizeof(bool) is not necessarily the
same as sizeof(int) this is problematic and might result in memory corruption.

Let's fix this, and make sure bus_map_all_properties() handles booleans as
ints, as the rest of sd-bus, and make all users of it expect the right thing.
src/login/loginctl.c
src/shared/bus-util.c
src/timedate/timedatectl.c