mirror of
https://github.com/ApfelTeeSaft/reactos.git
synced 2026-08-26 19:33:31 +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:
@@ -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)
|
||||
|
||||
Reference in New Issue
Block a user