- The name of the file can be shorter than 3 symbols
* Fixes 36 tests for kmtest FsRtlLegal
svn path=/trunk/; revision=72535
}
/* 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 */
if (FirstPart.Buffer[FirstPart.Length - 1] == ' ')
return FALSE;
- EndLoop:
+EndLoop:
/* Preparing next loop */
Name.Buffer = RemainingPart.Buffer;
Name.Length = RemainingPart.Length;