mirror of
https://github.com/ApfelTeeSaft/reactos.git
synced 2026-09-02 04:13:34 +00:00
[ADVAPI32]: Addendum to r72151: It's incorrect to compare the variable of BOOL type with TRUE. Any non-zero value is considered to be "true". Caught by Thomas.
svn path=/trunk/; revision=72152
This commit is contained in:
@@ -30,7 +30,7 @@ IsTextUnicode(IN CONST VOID* lpv,
|
||||
IN INT iSize,
|
||||
IN OUT LPINT lpiResult OPTIONAL)
|
||||
{
|
||||
return (RtlIsTextUnicode(lpv, iSize, lpiResult) == TRUE);
|
||||
return (RtlIsTextUnicode(lpv, iSize, lpiResult) != FALSE);
|
||||
}
|
||||
|
||||
/* EOF */
|
||||
|
||||
Reference in New Issue
Block a user