- Fix build. Sorry, forgot that the last commit also included changes to FsrtlAreNamesEqual to raise an exception if upcasing the strings failed.

svn path=/trunk/; revision=25381
This commit is contained in:
Alex Ionescu 2007-01-08 17:49:44 +00:00
parent a22a4040cc
commit a9e4074bd0

View file

@ -49,6 +49,7 @@ FsRtlAreNamesEqual(IN PCUNICODE_STRING Name1,
UNICODE_STRING UpcaseName2;
BOOLEAN StringsAreEqual, MemoryAllocated = FALSE;
ULONG i;
NTSTATUS Status;
/* Well, first check their size */
if (Name1->Length != Name2->Length) return FALSE;