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
lewton panics in residue_packet_decode_inner given crafted input. Error message:
'index 21 out of range for slice of length 16' and similar with varying indices and lengths.
Steps to reproduce: RUSTFLAGS='--cfg=fuzzing' cargo run --release --example perf /path/to/file.ogg
Hmm so this bug is weird. When I check whether codebook_dimensions + partition_size > vec_v.len() beforehand, the unit tests start failing. So I need to put the check into the loop :/. Let's just make the error silent.
lewton panics in
residue_packet_decode_inner
given crafted input. Error message:'index 21 out of range for slice of length 16' and similar with varying indices and lengths.
Steps to reproduce:
RUSTFLAGS='--cfg=fuzzing' cargo run --release --example perf /path/to/file.ogg
Sample files triggering the crash: oor-panic-in-residue_packet_decode_inner.zip
Found with AFL.rs.
The text was updated successfully, but these errors were encountered: