mirror of
https://github.com/reactos/reactos.git
synced 2024-12-28 18:15:11 +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);
|
name = tmp.Mid(len, pos - len);
|
||||||
folder = true;
|
folder = true;
|
||||||
}
|
}
|
||||||
tmp = name.MakeLower();
|
tmp = name;
|
||||||
|
tmp.MakeLower();
|
||||||
|
|
||||||
POSITION it = m_Returned.Find(tmp);
|
POSITION it = m_Returned.Find(tmp);
|
||||||
if (!name.IsEmpty() && !it)
|
if (!name.IsEmpty() && !it)
|
||||||
|
|
Loading…
Reference in a new issue