mirror of
https://gitlab.gnome.org/GNOME/glib.git
synced 2024-12-29 17:06:15 +01:00
Fix GHashTableIter layout for CHERI targets
Last field needs to be pointer-size to match GHashTableIter. This happened to work for most architecture due to alignment padding/pointer size, but for CHERI targets with 128-bit pointers RealIter ends up being smaller than GHashTableIter. Helps: https://gitlab.gnome.org/GNOME/glib/-/issues/2842
This commit is contained in:
parent
702e606f73
commit
2aed76fc94
@ -292,7 +292,7 @@ typedef struct
|
||||
gpointer dummy2;
|
||||
gint position;
|
||||
gboolean dummy3;
|
||||
gint version;
|
||||
gintptr version;
|
||||
} RealIter;
|
||||
|
||||
G_STATIC_ASSERT (sizeof (GHashTableIter) == sizeof (RealIter));
|
||||
|
Loading…
Reference in New Issue
Block a user