Author: ion
Date: Mon Jan 8 20:49:44 2007
New Revision: 25381
URL:
http://svn.reactos.org/svn/reactos?rev=25381&view=rev
Log:
- Fix build. Sorry, forgot that the last commit also included changes to
FsrtlAreNamesEqual to raise an exception if upcasing the strings failed.
Modified:
trunk/reactos/ntoskrnl/fsrtl/name.c
Modified: trunk/reactos/ntoskrnl/fsrtl/name.c
URL:
http://svn.reactos.org/svn/reactos/trunk/reactos/ntoskrnl/fsrtl/name.c?rev=…
==============================================================================
--- trunk/reactos/ntoskrnl/fsrtl/name.c (original)
+++ trunk/reactos/ntoskrnl/fsrtl/name.c Mon Jan 8 20:49:44 2007
@@ -49,6 +49,7 @@
UNICODE_STRING UpcaseName2;
BOOLEAN StringsAreEqual, MemoryAllocated = FALSE;
ULONG i;
+ NTSTATUS Status;
/* Well, first check their size */
if (Name1->Length != Name2->Length) return FALSE;