Fixed: Zip file iteration bug
This commit is contained in:
parent
95856ad9c9
commit
a7b11a7db1
@ -52,14 +52,14 @@ namespace HiImRay
|
||||
break;
|
||||
}
|
||||
|
||||
if (!readEntry.IsFile)
|
||||
if (string.IsNullOrWhiteSpace(readEntry.Name))
|
||||
{
|
||||
break;
|
||||
}
|
||||
|
||||
if (string.IsNullOrEmpty(readEntry.Name))
|
||||
if (!readEntry.IsFile)
|
||||
{
|
||||
break;
|
||||
continue;
|
||||
}
|
||||
|
||||
// change document
|
||||
|
Loading…
Reference in New Issue
Block a user