mirror of
https://gitlab.gnome.org/GNOME/glib.git
synced 2024-12-25 15:06:14 +01:00
gmain: child sources must always have same priority as parent
A child source does not have a priority of its own; it must have the same priority as its parent. Enforce this in g_source_set_priority_unlocked(). https://bugzilla.gnome.org/show_bug.cgi?id=619329
This commit is contained in:
parent
d981d79a42
commit
532f463eaf
@ -1367,6 +1367,9 @@ g_source_set_priority_unlocked (GSource *source,
|
||||
{
|
||||
GSList *tmp_list;
|
||||
|
||||
g_return_if_fail (source->priv->parent_source == NULL ||
|
||||
source->priv->parent_source->priority == priority);
|
||||
|
||||
source->priority = priority;
|
||||
|
||||
if (context)
|
||||
|
Loading…
Reference in New Issue
Block a user