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 was archived by the owner on Apr 30, 2021. It is now read-only.
It is easy to overflow a Byte. Moreover, because a Byte is signed, an overflow can result in a negative value and an ArrayIndexOutOfBoundsException on this line:
Consider changing these instances of
BytetoInteger:javafuzz/core/src/main/java/dev/fuzzit/javafuzz/core/Corpus.java
Line 322 in 342735a
and eliminating this cast:
javafuzz/core/src/main/java/dev/fuzzit/javafuzz/core/Corpus.java
Line 325 in 342735a
It is easy to overflow a
Byte. Moreover, because aByteis signed, an overflow can result in a negative value and anArrayIndexOutOfBoundsExceptionon this line:javafuzz/core/src/main/java/dev/fuzzit/javafuzz/core/Corpus.java
Line 333 in 342735a
Such was the case with a corpus I was using.