[NTOSKRNL]

Don't ignore IopCreateArcNames() return while booting.
At the moment, it's just returning STATUS_SUCCES but it will be changed later.

svn path=/trunk/; revision=49042
This commit is contained in:
Pierre Schweitzer 2010-10-07 19:58:22 +00:00
parent d6c9064e9d
commit 762f577918

View file

@ -507,7 +507,7 @@ IoInitSystem(IN PLOADER_PARAMETER_BLOCK LoaderBlock)
}
/* Create ARC names for boot devices */
IopCreateArcNames(LoaderBlock);
if (!NT_SUCCESS(IopCreateArcNames(LoaderBlock))) return FALSE;
/* Mark the system boot partition */
if (!IopMarkBootPartition(LoaderBlock)) return FALSE;