mirror of
https://github.com/reactos/reactos.git
synced 2024-12-28 01:55:19 +00:00
[SHELLEXT][ZIPFLDR] Be case sensitive (#2292)
The filenames in a zip folder were all lowercase. Now the filenames are case sensitive.
This commit is contained in:
parent
9c5017808a
commit
fcc4347898
1 changed files with 2 additions and 1 deletions
|
@ -52,7 +52,8 @@ public:
|
|||
name = tmp.Mid(len, pos - len);
|
||||
folder = true;
|
||||
}
|
||||
tmp = name.MakeLower();
|
||||
tmp = name;
|
||||
tmp.MakeLower();
|
||||
|
||||
POSITION it = m_Returned.Find(tmp);
|
||||
if (!name.IsEmpty() && !it)
|
||||
|
|
Loading…
Reference in a new issue