mirror of
https://gitlab.gnome.org/GNOME/glib.git
synced 2024-11-08 18:36:17 +01:00
gasyncqueue: Add missing precondition to g_async_queue_timeout_pop()
And g_async_queue_timeout_pop_unlocked(). Signed-off-by: Philip Withnall <philip@tecnocode.co.uk> https://gitlab.gnome.org/GNOME/glib/issues/1459
This commit is contained in:
parent
2d7423b986
commit
ef1d24974d
@ -539,6 +539,8 @@ g_async_queue_timeout_pop (GAsyncQueue *queue,
|
||||
gint64 end_time = g_get_monotonic_time () + timeout;
|
||||
gpointer retval;
|
||||
|
||||
g_return_val_if_fail (queue != NULL, NULL);
|
||||
|
||||
g_mutex_lock (&queue->mutex);
|
||||
retval = g_async_queue_pop_intern_unlocked (queue, TRUE, end_time);
|
||||
g_mutex_unlock (&queue->mutex);
|
||||
@ -567,6 +569,8 @@ g_async_queue_timeout_pop_unlocked (GAsyncQueue *queue,
|
||||
{
|
||||
gint64 end_time = g_get_monotonic_time () + timeout;
|
||||
|
||||
g_return_val_if_fail (queue != NULL, NULL);
|
||||
|
||||
return g_async_queue_pop_intern_unlocked (queue, TRUE, end_time);
|
||||
}
|
||||
|
||||
|
Loading…
Reference in New Issue
Block a user