Closed ttys3 closed 2 months ago
I don't know why I cannot run checks on this PR... GitHub is really annoying... I opened #54 and some checks fail, can you check over there?
I don't know why I cannot run checks on this PR... GitHub is really annoying... I opened #54 and some checks fail, can you check over there?
OK, I'll close this one
the bug will cause CJK chars in filename been stripped out.
for example:
/media/mydisk/fooにほん.rar
will result in/media/mydisk/foo
so the open will faildue to
in
Data->Arc.Open
it will doWideToChar
which cause the CJK bytes got lost.but if it calls
CharToWide
first (whenArcNameW
is nullptr), when it do the reverse, it get the right filename back.