You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
The IntoIter impl advances the head pointer every iteration, but this breaks the linked list invariant that the head's prev should be null.
If the iteration is not done to completion, on subsequent drop, FuturesUnordered::unlink relies on this broken invariant and ends up panicking.
The fix is to maintain the `head->prev == null` invariant while iterating.
0 commit comments