Skip to content

Commit

Permalink
fix nits
Browse files Browse the repository at this point in the history
  • Loading branch information
joonazan committed May 27, 2024
1 parent 10777ac commit 1e53af6
Show file tree
Hide file tree
Showing 2 changed files with 4 additions and 4 deletions.
4 changes: 2 additions & 2 deletions afl-fuzz/Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -7,8 +7,8 @@ edition.workspace = true
authors.workspace = true

[dependencies]
afl = "*"
arbitrary = "*"
afl = "0.15"
arbitrary = "1"

[dependencies.vm2]
path = ".."
Expand Down
4 changes: 2 additions & 2 deletions src/single_instruction_test/callframe.rs
Original file line number Diff line number Diff line change
Expand Up @@ -29,8 +29,8 @@ impl<'a> Arbitrary<'a> for Callframe {
heap_size: u.arbitrary()?,
aux_heap_size: u.arbitrary()?,
calldata_heap: u.arbitrary()?,
heaps_i_am_keeping_alive: vec![], // TODO
world_before_this_frame: WorldDiff::default().snapshot(), // TODO
heaps_i_am_keeping_alive: vec![],
world_before_this_frame: WorldDiff::default().snapshot(),
};
if u.arbitrary()? {
me.push_near_call(
Expand Down

0 comments on commit 1e53af6

Please sign in to comment.