mirror of
https://gitlab.gnome.org/GNOME/glib.git
synced 2024-11-10 03:16:17 +01:00
fix unconditional check of first GParamSpec in
* gobject/gobjectnotifyqueue.c: fix unconditional check of first GParamSpec in g_object_notify_queue_thaw(); prevent property notification being lost
This commit is contained in:
parent
d403f5f219
commit
8caf4a8c43
@ -1,3 +1,9 @@
|
||||
2001-07-23 Padraig O'Briain <Padraig.Obriain@sun.com>
|
||||
|
||||
* gobject/gobjectnotifyqueue.c: fix unconditional check of
|
||||
first GParamSpec in g_object_notify_queue_thaw(); prevent
|
||||
property notification being lost
|
||||
|
||||
2001-07-23 Ron Steinke <rsteinke@w-link.net>
|
||||
|
||||
* glib/giochannel.c: fixed g_io_channel_seek_position() so that
|
||||
|
@ -1,3 +1,9 @@
|
||||
2001-07-23 Padraig O'Briain <Padraig.Obriain@sun.com>
|
||||
|
||||
* gobject/gobjectnotifyqueue.c: fix unconditional check of
|
||||
first GParamSpec in g_object_notify_queue_thaw(); prevent
|
||||
property notification being lost
|
||||
|
||||
2001-07-23 Ron Steinke <rsteinke@w-link.net>
|
||||
|
||||
* glib/giochannel.c: fixed g_io_channel_seek_position() so that
|
||||
|
@ -1,3 +1,9 @@
|
||||
2001-07-23 Padraig O'Briain <Padraig.Obriain@sun.com>
|
||||
|
||||
* gobject/gobjectnotifyqueue.c: fix unconditional check of
|
||||
first GParamSpec in g_object_notify_queue_thaw(); prevent
|
||||
property notification being lost
|
||||
|
||||
2001-07-23 Ron Steinke <rsteinke@w-link.net>
|
||||
|
||||
* glib/giochannel.c: fixed g_io_channel_seek_position() so that
|
||||
|
@ -1,3 +1,9 @@
|
||||
2001-07-23 Padraig O'Briain <Padraig.Obriain@sun.com>
|
||||
|
||||
* gobject/gobjectnotifyqueue.c: fix unconditional check of
|
||||
first GParamSpec in g_object_notify_queue_thaw(); prevent
|
||||
property notification being lost
|
||||
|
||||
2001-07-23 Ron Steinke <rsteinke@w-link.net>
|
||||
|
||||
* glib/giochannel.c: fixed g_io_channel_seek_position() so that
|
||||
|
@ -1,3 +1,9 @@
|
||||
2001-07-23 Padraig O'Briain <Padraig.Obriain@sun.com>
|
||||
|
||||
* gobject/gobjectnotifyqueue.c: fix unconditional check of
|
||||
first GParamSpec in g_object_notify_queue_thaw(); prevent
|
||||
property notification being lost
|
||||
|
||||
2001-07-23 Ron Steinke <rsteinke@w-link.net>
|
||||
|
||||
* glib/giochannel.c: fixed g_io_channel_seek_position() so that
|
||||
|
@ -1,3 +1,9 @@
|
||||
2001-07-23 Padraig O'Briain <Padraig.Obriain@sun.com>
|
||||
|
||||
* gobject/gobjectnotifyqueue.c: fix unconditional check of
|
||||
first GParamSpec in g_object_notify_queue_thaw(); prevent
|
||||
property notification being lost
|
||||
|
||||
2001-07-23 Ron Steinke <rsteinke@w-link.net>
|
||||
|
||||
* glib/giochannel.c: fixed g_io_channel_seek_position() so that
|
||||
|
@ -1,3 +1,9 @@
|
||||
2001-07-23 Padraig O'Briain <Padraig.Obriain@sun.com>
|
||||
|
||||
* gobject/gobjectnotifyqueue.c: fix unconditional check of
|
||||
first GParamSpec in g_object_notify_queue_thaw(); prevent
|
||||
property notification being lost
|
||||
|
||||
2001-07-23 Ron Steinke <rsteinke@w-link.net>
|
||||
|
||||
* glib/giochannel.c: fixed g_io_channel_seek_position() so that
|
||||
|
@ -1,3 +1,9 @@
|
||||
2001-07-23 Padraig O'Briain <Padraig.Obriain@sun.com>
|
||||
|
||||
* gobject/gobjectnotifyqueue.c: fix unconditional check of
|
||||
first GParamSpec in g_object_notify_queue_thaw(); prevent
|
||||
property notification being lost
|
||||
|
||||
2001-07-23 Ron Steinke <rsteinke@w-link.net>
|
||||
|
||||
* glib/giochannel.c: fixed g_io_channel_seek_position() so that
|
||||
|
@ -104,6 +104,8 @@ g_object_notify_queue_thaw (GObject *object,
|
||||
g_return_if_fail (object->ref_count > 0);
|
||||
|
||||
pspecs = nqueue->n_pspecs > 16 ? free_me = g_new (GParamSpec*, nqueue->n_pspecs) : pspecs_mem;
|
||||
/* set first entry to NULL since it's checked unconditionally */
|
||||
pspecs[0] = NULL;
|
||||
for (slist = nqueue->pspecs; slist; slist = slist->next)
|
||||
{
|
||||
GParamSpec *pspec = slist->data;
|
||||
|
Loading…
Reference in New Issue
Block a user