Fix the "Found char > 127" warning to check the correct characters

Change-Id: Ia4a713c8a5ddda11e9802cbc317dde9ff48b8fd3
Reviewed-on: https://gerrit.libreoffice.org/c/core/+/144026
Tested-by: Jenkins
Reviewed-by: Mike Kaganski <mike.kaganski@collabora.com>
This commit is contained in:
Mike Kaganski
2022-12-13 09:25:47 +00:00
parent dc3b41f1d0
commit 15cce9806c

View File

@@ -194,10 +194,10 @@ sal_Bool SAL_CALL rtl_ustr_asciil_reverseEquals_WithLength( const sal_Unicode* p
const char* pStr2Run = pStr2+nStrLen;
while ( pStr1 < pStr1Run )
{
SAL_WARN_IF( !rtl::isAscii(static_cast<unsigned char>(*pStr2)), "rtl.string",
"rtl_ustr_asciil_reverseEquals_WithLength - Found char > 127" );
pStr1Run--;
pStr2Run--;
SAL_WARN_IF( !rtl::isAscii(static_cast<unsigned char>(*pStr2Run)), "rtl.string",
"rtl_ustr_asciil_reverseEquals_WithLength - Found char > 127" );
if( *pStr1Run != static_cast<sal_Unicode>(*pStr2Run) )
return false;
}