mirror of
https://gitlab.freedesktop.org/pulseaudio/pulseaudio.git
synced 2025-11-01 22:58:47 -04:00
unbreak pa_idxset_rrobin
This commit is contained in:
parent
3a46bbeba5
commit
4050447230
1 changed files with 1 additions and 2 deletions
|
|
@ -318,8 +318,7 @@ void* pa_idxset_rrobin(pa_idxset *s, uint32_t *idx) {
|
|||
|
||||
hash = *idx % NBUCKETS;
|
||||
|
||||
if (!(e = index_scan(s, hash, *idx)))
|
||||
return NULL;
|
||||
e = index_scan(s, hash, *idx);
|
||||
|
||||
if (e && e->iterate_next)
|
||||
e = e->iterate_next;
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue