Remove extra data from struct since we're not using it

This commit is contained in:
Chris Hennick 2023-05-04 16:18:48 -07:00
parent 2f87bd6cfc
commit 08ec7ca710
No known key found for this signature in database
GPG key ID: 25653935CC8B6C74

View file

@ -4,18 +4,10 @@ use libfuzzer_sys::fuzz_target;
use arbitrary::Arbitrary;
use std::io::{Cursor, Read, Seek, Write};
#[derive(Arbitrary,Debug)]
pub struct ExtraData {
pub header_id: u16,
pub data: Vec<u8>
}
#[derive(Arbitrary,Debug)]
pub struct File {
pub name: String,
pub contents: Vec<Vec<u8>>,
pub local_extra_data: Vec<ExtraData>,
pub central_extra_data: Vec<ExtraData>
pub contents: Vec<Vec<u8>>
}
#[derive(Arbitrary,Debug)]