mirror of
https://gitlab.freedesktop.org/pulseaudio/pulseaudio.git
synced 2025-11-04 13:29:59 -05: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;
|
hash = *idx % NBUCKETS;
|
||||||
|
|
||||||
if (!(e = index_scan(s, hash, *idx)))
|
e = index_scan(s, hash, *idx);
|
||||||
return NULL;
|
|
||||||
|
|
||||||
if (e && e->iterate_next)
|
if (e && e->iterate_next)
|
||||||
e = e->iterate_next;
|
e = e->iterate_next;
|
||||||
|
|
|
||||||
Loading…
Add table
Add a link
Reference in a new issue