mirror of
https://github.com/reactos/reactos.git
synced 2025-07-23 01:53:39 +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)))
|
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 */
|
||||||
|
|
Loading…
Add table
Add a link
Reference in a new issue