Merge remote-tracking branch 'brettsimons/patch-1' into oldpr425

This commit is contained in:
Chris Hennick 2024-04-29 23:05:08 -07:00
commit 621dd21921
No known key found for this signature in database
GPG key ID: DA47AABA4961C509
2 changed files with 2 additions and 2 deletions

View file

@ -558,7 +558,7 @@ impl<R: Read + Seek> ZipArchive<R> {
let outpath = directory.as_ref().join(filepath);
if file.name().ends_with('/') {
if file.is_dir() {
fs::create_dir_all(&outpath)?;
} else {
if let Some(p) = outpath.parent() {

View file

@ -67,7 +67,7 @@ impl<R: Read> ZipStreamReader<R> {
let outpath = self.0.join(filepath);
if file.name().ends_with('/') {
if file.is_dir() {
fs::create_dir_all(&outpath)?;
} else {
if let Some(p) = outpath.parent() {