Skip to content

Commit

Permalink
Fix snapshot2 fuzz
Browse files Browse the repository at this point in the history
  • Loading branch information
mohanson committed Jun 3, 2024
1 parent 39f3eee commit 65285b2
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion fuzz/fuzz_targets/snapshot2.rs
Original file line number Diff line number Diff line change
Expand Up @@ -127,7 +127,7 @@ fuzz_target!(|data: [u8; 96]| {
let length = deque.u32() as u64;
let offset = deque.u32() as u64;
let addr = deque.u32() as u64;
let result = ctx.store_bytes(&mut machine1, addr, &DATA_SOURCE_CONTENT, offset, length);
let result = ctx.store_bytes(&mut machine1, addr, &DATA_SOURCE_CONTENT, offset, length, 0);
if result.is_err() {
return;
}
Expand Down

0 comments on commit 65285b2

Please sign in to comment.