ntdll: Fixed the null bytes check in RtlIsTextUnicode.

This commit is contained in:
Alexandre Julliard 2007-07-30 20:17:24 +02:00
parent db72af98b5
commit 43519e415d
1 changed files with 1 additions and 1 deletions

View File

@ -1636,7 +1636,7 @@ BOOLEAN WINAPI RtlIsTextUnicode( LPCVOID buf, INT len, INT *pf )
{
for (i = 0; i < len; i++)
{
if (!s[i])
if (!(s[i] & 0xff) || !(s[i] >> 8))
{
out_flags |= IS_TEXT_UNICODE_NULL_BYTES;
break;