- Pass a boolean argument to RtlEqualUnicodeString

svn path=/trunk/; revision=63624
This commit is contained in:
Thomas Faber 2014-06-21 11:07:51 +00:00
parent 988dbfce59
commit 73f4d1ff00
2 changed files with 2 additions and 2 deletions

View file

@ -382,7 +382,7 @@ EngLoadImageEx(
if (pldev->pGdiDriverInfo) if (pldev->pGdiDriverInfo)
{ {
/* Check for match (case insensative) */ /* Check for match (case insensative) */
if (RtlEqualUnicodeString(&pldev->pGdiDriverInfo->DriverName, &strDriverName, 1)) if (RtlEqualUnicodeString(&pldev->pGdiDriverInfo->DriverName, &strDriverName, TRUE))
{ {
/* Image found in LDEV list */ /* Image found in LDEV list */
break; break;

View file

@ -72,7 +72,7 @@ IntDesktopObjectParse(IN PVOID ParseObject,
/* Compare the name */ /* Compare the name */
if (RtlEqualUnicodeString(RemainingName, if (RtlEqualUnicodeString(RemainingName,
&DesktopName, &DesktopName,
(Attributes & OBJ_CASE_INSENSITIVE))) (Attributes & OBJ_CASE_INSENSITIVE) != 0))
{ {
/* We found a match. Did this come from a create? */ /* We found a match. Did this come from a create? */
if (Context) if (Context)