Remove extra data from struct since we're not using it
This commit is contained in:
parent
2f87bd6cfc
commit
08ec7ca710
1 changed files with 1 additions and 9 deletions
|
@ -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)]
|
||||
|
|
Loading…
Add table
Reference in a new issue