mirror of
https://github.com/reactos/reactos.git
synced 2025-04-29 18:48:53 +00:00
[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:
parent
a2f9762020
commit
6d7ec8c7ec
1 changed files with 0 additions and 10 deletions
|
@ -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'<') &&
|
||||
|
|
Loading…
Reference in a new issue