mirror of
https://github.com/Xevion/easy7zip.git
synced 2025-12-09 08:07:19 -06:00
21.02
This commit is contained in:
@@ -142,8 +142,8 @@ HRESULT CHandler::Open2(IInStream *stream, IArchiveOpenCallback *callback)
|
||||
}
|
||||
|
||||
int dotPos = name.ReverseFind_Dot();
|
||||
const UString prefix = name.Left(dotPos + 1);
|
||||
const UString ext = name.Ptr(dotPos + 1);
|
||||
const UString prefix = name.Left((unsigned)(dotPos + 1));
|
||||
const UString ext = name.Ptr((unsigned)(dotPos + 1));
|
||||
UString ext2 = ext;
|
||||
ext2.MakeLower_Ascii();
|
||||
|
||||
|
||||
Reference in New Issue
Block a user