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
{{ message }}
This repository has been archived by the owner on Nov 1, 2023. It is now read-only.
The PE disassembly uses a FixedBitSet to flag coverage feature sites. However, the FixedBitSet::insert() method panics if the bit index is out of bounds.
At a minimum, replace uses of insert() with a non-panicking usage. This doesn't appear to exist, so we could use something like a private extension trait that adds a method like try_insert(&mut self, bit: usize) -> Result<()>.
AB#43103025
The text was updated successfully, but these errors were encountered:
The PE disassembly uses a
FixedBitSet
to flag coverage feature sites. However, theFixedBitSet::insert()
method panics if the bit index is out of bounds.At a minimum, replace uses of
insert()
with a non-panicking usage. This doesn't appear to exist, so we could use something like a private extension trait that adds a method liketry_insert(&mut self, bit: usize) -> Result<()>
.AB#43103025
The text was updated successfully, but these errors were encountered: