diff --git a/fuzz/fuzz_targets/fuzz_write.rs b/fuzz/fuzz_targets/fuzz_write.rs index 4dd02a87..5df9e50d 100644 --- a/fuzz/fuzz_targets/fuzz_write.rs +++ b/fuzz/fuzz_targets/fuzz_write.rs @@ -34,6 +34,8 @@ impl FileOperation { if !self.name.ends_with('\\') && !self.name.ends_with('/') { return self.name.to_owned() + "/"; } + } else { + self.name.to_owned() } } }