mirror of
https://gitlab.gnome.org/GNOME/glib.git
synced 2024-11-10 11:26:16 +01:00
Fix array-bounds compiler warnings with GCC 12
GCC isn't smart enough to recognise that the assertion on the size of N_PROPERTIES also affects the assertion on the GParamSpec array access, so we need to coalesce the two checks into one to avoid an array-bounds compiler warning.
This commit is contained in:
parent
66c4e35e28
commit
903c004b37
@ -124,8 +124,7 @@ test_object_set_property (GObject *gobject,
|
|||||||
TestObject *tobj = (TestObject *) gobject;
|
TestObject *tobj = (TestObject *) gobject;
|
||||||
|
|
||||||
g_assert_cmpint (prop_id, !=, 0);
|
g_assert_cmpint (prop_id, !=, 0);
|
||||||
g_assert_cmpint (prop_id, !=, N_PROPERTIES);
|
g_assert_true (prop_id < N_PROPERTIES && pspec == properties[prop_id]);
|
||||||
g_assert (pspec == properties[prop_id]);
|
|
||||||
|
|
||||||
switch ((TestObjectProperty)prop_id)
|
switch ((TestObjectProperty)prop_id)
|
||||||
{
|
{
|
||||||
@ -159,8 +158,7 @@ test_object_get_property (GObject *gobject,
|
|||||||
TestObject *tobj = (TestObject *) gobject;
|
TestObject *tobj = (TestObject *) gobject;
|
||||||
|
|
||||||
g_assert_cmpint (prop_id, !=, 0);
|
g_assert_cmpint (prop_id, !=, 0);
|
||||||
g_assert_cmpint (prop_id, !=, N_PROPERTIES);
|
g_assert_true (prop_id < N_PROPERTIES && pspec == properties[prop_id]);
|
||||||
g_assert (pspec == properties[prop_id]);
|
|
||||||
|
|
||||||
switch ((TestObjectProperty)prop_id)
|
switch ((TestObjectProperty)prop_id)
|
||||||
{
|
{
|
||||||
|
@ -132,8 +132,7 @@ test_object_set_property (GObject *gobject,
|
|||||||
TestObject *tobj = (TestObject *) gobject;
|
TestObject *tobj = (TestObject *) gobject;
|
||||||
|
|
||||||
g_assert_cmpint (prop_id, !=, 0);
|
g_assert_cmpint (prop_id, !=, 0);
|
||||||
g_assert_cmpint (prop_id, !=, N_PROPERTIES);
|
g_assert_true (prop_id < N_PROPERTIES && pspec == properties[prop_id]);
|
||||||
g_assert (pspec == properties[prop_id]);
|
|
||||||
|
|
||||||
switch ((TestObjectProperty)prop_id)
|
switch ((TestObjectProperty)prop_id)
|
||||||
{
|
{
|
||||||
@ -167,8 +166,7 @@ test_object_get_property (GObject *gobject,
|
|||||||
TestObject *tobj = (TestObject *) gobject;
|
TestObject *tobj = (TestObject *) gobject;
|
||||||
|
|
||||||
g_assert_cmpint (prop_id, !=, 0);
|
g_assert_cmpint (prop_id, !=, 0);
|
||||||
g_assert_cmpint (prop_id, !=, N_PROPERTIES);
|
g_assert_true (prop_id < N_PROPERTIES && pspec == properties[prop_id]);
|
||||||
g_assert (pspec == properties[prop_id]);
|
|
||||||
|
|
||||||
switch ((TestObjectProperty)prop_id)
|
switch ((TestObjectProperty)prop_id)
|
||||||
{
|
{
|
||||||
|
@ -104,8 +104,7 @@ test_object_set_property (GObject *gobject,
|
|||||||
TestObject *tobj = (TestObject *) gobject;
|
TestObject *tobj = (TestObject *) gobject;
|
||||||
|
|
||||||
g_assert_cmpint (prop_id, !=, 0);
|
g_assert_cmpint (prop_id, !=, 0);
|
||||||
g_assert_cmpint (prop_id, !=, N_PROPERTIES);
|
g_assert_true (prop_id < N_PROPERTIES && pspec == properties[prop_id]);
|
||||||
g_assert (pspec == properties[prop_id]);
|
|
||||||
|
|
||||||
switch (prop_id)
|
switch (prop_id)
|
||||||
{
|
{
|
||||||
@ -139,8 +138,7 @@ test_object_get_property (GObject *gobject,
|
|||||||
TestObject *tobj = (TestObject *) gobject;
|
TestObject *tobj = (TestObject *) gobject;
|
||||||
|
|
||||||
g_assert_cmpint (prop_id, !=, 0);
|
g_assert_cmpint (prop_id, !=, 0);
|
||||||
g_assert_cmpint (prop_id, !=, N_PROPERTIES);
|
g_assert_true (prop_id < N_PROPERTIES && pspec == properties[prop_id]);
|
||||||
g_assert (pspec == properties[prop_id]);
|
|
||||||
|
|
||||||
switch (prop_id)
|
switch (prop_id)
|
||||||
{
|
{
|
||||||
|
Loading…
Reference in New Issue
Block a user