Author: dchapyshev Date: Fri Sep 2 20:21:02 2016 New Revision: 72535
URL: http://svn.reactos.org/svn/reactos?rev=72535&view=rev Log: [NTOS:FSRTL] - The name of the file can be shorter than 3 symbols
* Fixes 36 tests for kmtest FsRtlLegal
Modified: trunk/reactos/ntoskrnl/fsrtl/dbcsname.c
Modified: trunk/reactos/ntoskrnl/fsrtl/dbcsname.c URL: http://svn.reactos.org/svn/reactos/trunk/reactos/ntoskrnl/fsrtl/dbcsname.c?r... ============================================================================== --- trunk/reactos/ntoskrnl/fsrtl/dbcsname.c [iso-8859-1] (original) +++ trunk/reactos/ntoskrnl/fsrtl/dbcsname.c [iso-8859-1] Fri Sep 2 20:21:02 2016 @@ -475,7 +475,7 @@ }
/* Filename must be 8.3 filename */ - if (FirstPart.Length < 3 || FirstPart.Length > 12) + if (FirstPart.Length > 12) return FALSE;
/* Now, we will parse the filename to find everything bad in */ @@ -520,7 +520,7 @@ if (FirstPart.Buffer[FirstPart.Length - 1] == ' ') return FALSE;
- EndLoop: +EndLoop: /* Preparing next loop */ Name.Buffer = RemainingPart.Buffer; Name.Length = RemainingPart.Length;