mirror of
https://github.com/reactos/reactos.git
synced 2024-11-20 14:30:57 +00:00
[RTL]: Fix RtlDoesFileExists_UEx, thanks to ThFabba.
svn path=/trunk/; revision=52690
This commit is contained in:
parent
8045981334
commit
b9aaadf5ce
1 changed files with 1 additions and 1 deletions
|
@ -1158,7 +1158,7 @@ RtlDoesFileExists_UEx(IN PCWSTR FileName,
|
|||
if (NT_SUCCESS(RtlInitUnicodeStringEx(&NameString, FileName)))
|
||||
{
|
||||
/* Call the unicode function */
|
||||
return NT_SUCCESS(RtlDoesFileExists_UstrEx(&NameString, SucceedIfBusy));
|
||||
return RtlDoesFileExists_UstrEx(&NameString, SucceedIfBusy);
|
||||
}
|
||||
|
||||
/* Fail */
|
||||
|
|
Loading…
Reference in a new issue