-
Notifications
You must be signed in to change notification settings - Fork 19
Closed
Labels
Description
extern crate brotli;
use std::io::{self, Read};
use brotli::Decompressor;
fn main() {
let mut input = vec![];
let _ = Decompressor::new(&b"\x1b\x3f\xff\xff\xdb\x4f\xe2\x99\x80\x12".to_vec() as &[u8]).read_to_end(&mut input);
}
Crash discovered using afl.rs