mirror of
https://github.com/reactos/reactos.git
synced 2025-08-02 06:26:00 +00:00
- We're comparing WCHARs, not CHARs, spotted by Ged Murphy.
svn path=/trunk/; revision=32448
This commit is contained in:
parent
fc56cc8116
commit
5b1c7de117
1 changed files with 1 additions and 1 deletions
|
@ -150,7 +150,7 @@ FsRtlDissectName(IN UNICODE_STRING Name,
|
|||
for (i = 0; i < Name.Length / sizeof(WCHAR); i++)
|
||||
{
|
||||
/* If we found one... */
|
||||
if (Name.Buffer[i] == '\\')
|
||||
if (Name.Buffer[i] == L'\\')
|
||||
{
|
||||
/* If it begins string, just notice it and continue */
|
||||
if (i == 0)
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue