mirror of
https://github.com/reactos/reactos.git
synced 2025-01-03 21:09:19 +00:00
[WIN32K]
- Pass a boolean argument to RtlEqualUnicodeString svn path=/trunk/; revision=63624
This commit is contained in:
parent
988dbfce59
commit
73f4d1ff00
2 changed files with 2 additions and 2 deletions
|
@ -382,7 +382,7 @@ EngLoadImageEx(
|
|||
if (pldev->pGdiDriverInfo)
|
||||
{
|
||||
/* Check for match (case insensative) */
|
||||
if (RtlEqualUnicodeString(&pldev->pGdiDriverInfo->DriverName, &strDriverName, 1))
|
||||
if (RtlEqualUnicodeString(&pldev->pGdiDriverInfo->DriverName, &strDriverName, TRUE))
|
||||
{
|
||||
/* Image found in LDEV list */
|
||||
break;
|
||||
|
|
|
@ -72,7 +72,7 @@ IntDesktopObjectParse(IN PVOID ParseObject,
|
|||
/* Compare the name */
|
||||
if (RtlEqualUnicodeString(RemainingName,
|
||||
&DesktopName,
|
||||
(Attributes & OBJ_CASE_INSENSITIVE)))
|
||||
(Attributes & OBJ_CASE_INSENSITIVE) != 0))
|
||||
{
|
||||
/* We found a match. Did this come from a create? */
|
||||
if (Context)
|
||||
|
|
Loading…
Reference in a new issue