[RTL]: Fix RtlDoesFileExists_UEx, thanks to ThFabba.

svn path=/trunk/; revision=52690
This commit is contained in:
Alex Ionescu 2011-07-15 21:59:06 +00:00
parent 8045981334
commit b9aaadf5ce

View file

@ -1158,7 +1158,7 @@ RtlDoesFileExists_UEx(IN PCWSTR FileName,
if (NT_SUCCESS(RtlInitUnicodeStringEx(&NameString, FileName))) if (NT_SUCCESS(RtlInitUnicodeStringEx(&NameString, FileName)))
{ {
/* Call the unicode function */ /* Call the unicode function */
return NT_SUCCESS(RtlDoesFileExists_UstrEx(&NameString, SucceedIfBusy)); return RtlDoesFileExists_UstrEx(&NameString, SucceedIfBusy);
} }
/* Fail */ /* Fail */