chore: Bug fix: must recreate if . or .. is a path element

This commit is contained in:
Chris Hennick 2024-05-03 14:31:32 -07:00
parent 001967186a
commit 5cd448802f
No known key found for this signature in database
GPG key ID: DA47AABA4961C509

View file

@ -219,7 +219,8 @@ impl Zip64CentralDirectoryEnd {
pub(crate) fn path_to_string<T: AsRef<Path>>(path: T) -> String {
let mut maybe_original = None;
if let Some(original) = path.as_ref().to_str() {
if MAIN_SEPARATOR == '/' || !original[1..].contains(MAIN_SEPARATOR) {
if (MAIN_SEPARATOR == '/' || !original.contains(MAIN_SEPARATOR))
&& !original.ends_with('.') && !original.contains("./") {
if original.starts_with(MAIN_SEPARATOR) {
maybe_original = Some(&original[1..]);
} else {