[CDFS] Revert 9d0596a

The appropriate fix was the previous one, where the macro
for checking legal chars have been fixed.

Thanks to MS for their review :-).

CORE-14067
This commit is contained in:
Pierre Schweitzer 2018-08-29 08:32:08 +02:00
parent a2f9762020
commit 6d7ec8c7ec
No known key found for this signature in database
GPG key ID: 7545556C3D585B0B

View file

@ -410,17 +410,7 @@ Return Value:
Wchar < Add2Ptr( FileName->Buffer, FileName->Length, PWCHAR );
Wchar++) {
#ifndef __REACTOS__
if ((*Wchar < 0xff) &&
#else
//
// Check whether ASCII characters are legal.
// We will consider the rest of the characters
// (extended ASCII and unicode) as legal.
//
if ((*Wchar < 0x80) &&
#endif
!FsRtlIsAnsiCharacterLegalHpfs( *Wchar, FALSE ) &&
(*Wchar != L'"') &&
(*Wchar != L'<') &&