summaryrefslogtreecommitdiffstats
path: root/test/GetBuildFailures
diff options
context:
space:
mode:
Diffstat (limited to 'test/GetBuildFailures')
0 files changed, 0 insertions, 0 deletions
class='sha1'>Qt-33985fb2020884955ed44db825ace7cf0ec32bbc.zip
Qt-33985fb2020884955ed44db825ace7cf0ec32bbc.tar.gz
Qt-33985fb2020884955ed44db825ace7cf0ec32bbc.tar.bz2
Fix D-Bus marshalling of booleans in optimised code.
C++ booleans are 1 byte in size, but D-Bus booleans (dbus_bool_t) are 4 bytes. That means a boolean with a zero in the LSB byte but non-zero garbage in the high bytes is a valid "false" in C++, but libdbus-1 will turn that to true when sending. Task-number: QTBUG-7041 Reviewed-By: Trust Me BT: yes