mirror of
https://gitlab.freedesktop.org/dbus/dbus.git
synced 2026-01-07 14:40:22 +01:00
DBusMessage: assert the properties we need DBusMessageIter to have
We already asserted that DBusMessageIter must be at least as large as DBusMessageRealIter (so that casting DBusMessageIter * to DBusMessageRealIter * does not result in overflowing the stack variable). Also assert that it must have alignment requirements at least as strict as those of DBusMessageRealIter * (so that casting does not increase the required alignment). Signed-off-by: Simon McVittie <simon.mcvittie@collabora.co.uk> Reviewed-by: Thiago Macieira <thiago@kde.org> Bug: https://bugs.freedesktop.org/show_bug.cgi?id=94136
This commit is contained in:
parent
ca9ea25e11
commit
338cfa1599
1 changed files with 3 additions and 0 deletions
|
|
@ -2025,7 +2025,10 @@ _dbus_message_iter_init_common (DBusMessage *message,
|
|||
DBusMessageRealIter *real,
|
||||
int iter_type)
|
||||
{
|
||||
/* If these static assertions fail on your platform, report it as a bug. */
|
||||
_DBUS_STATIC_ASSERT (sizeof (DBusMessageRealIter) <= sizeof (DBusMessageIter));
|
||||
_DBUS_STATIC_ASSERT (_DBUS_ALIGNOF (DBusMessageRealIter) <=
|
||||
_DBUS_ALIGNOF (DBusMessageIter));
|
||||
|
||||
/* Since the iterator will read or write who-knows-what from the
|
||||
* message, we need to get in the right byte order
|
||||
|
|
|
|||
Loading…
Add table
Reference in a new issue