From 51ce58751ecdd409d30ffb791f757cb136da9de5 Mon Sep 17 00:00:00 2001 From: Chris Hennick Date: Sun, 14 May 2023 18:36:31 -0700 Subject: [PATCH] Bug fix --- fuzz/fuzz_targets/fuzz_write.rs | 2 ++ 1 file changed, 2 insertions(+) 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() } } }