We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
Have a question about this project? # for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “#”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? # to your account
SliceDeque::drain_filter can double drop an element if the predicate panics
slice-deque
0.3.0
Affected versions of the crate incremented the current index of the drain filter iterator before calling the predicate function self.pred.
self.pred
If the predicate function panics, it is possible for the last element in the iterator to be dropped twice.
See advisory page for additional details.
The text was updated successfully, but these errors were encountered:
No branches or pull requests
slice-deque
0.3.0
Affected versions of the crate incremented the current index of the drain filter
iterator before calling the predicate function
self.pred
.If the predicate function panics, it is possible for the last element in the
iterator to be dropped twice.
See advisory page for additional details.
The text was updated successfully, but these errors were encountered: