diff options
author | vanhauser-thc <vh@thc.org> | 2021-07-20 22:31:45 +0200 |
---|---|---|
committer | vanhauser-thc <vh@thc.org> | 2021-07-20 22:31:55 +0200 |
commit | bbff0c88fa8a86ec0029a82d9f723a89d97315a9 (patch) | |
tree | e6705359c98117ecee9c8d7f439a29f2a65366a5 | |
parent | 5543bd5b638fdb9460d8a4b58982d8bd9f59627d (diff) | |
download | afl++-bbff0c88fa8a86ec0029a82d9f723a89d97315a9.tar.gz |
fix rust bindings
-rw-r--r-- | custom_mutators/rust/custom_mutator/src/lib.rs | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/custom_mutators/rust/custom_mutator/src/lib.rs b/custom_mutators/rust/custom_mutator/src/lib.rs index 66559886..6826623f 100644 --- a/custom_mutators/rust/custom_mutator/src/lib.rs +++ b/custom_mutators/rust/custom_mutator/src/lib.rs @@ -619,7 +619,7 @@ where } } - fn queue_new_entry(&mut self, filename_new_queue: &Path, filename_orig_queue: Option<&Path>) { + fn queue_new_entry(&mut self, filename_new_queue: &Path, filename_orig_queue: Option<&Path>) -> bool { match self.queue_new_entry(filename_new_queue, filename_orig_queue) { Ok(r) => r, Err(e) => { |