sal/rtl/ustring.cxx |    4 ++--
 1 file changed, 2 insertions(+), 2 deletions(-)

New commits:
commit 95c21e693b9b865c928901d2b0c6e5020cf144d1
Author:     Mike Kaganski <[email protected]>
AuthorDate: Tue Dec 13 09:25:47 2022 +0000
Commit:     Xisco Fauli <[email protected]>
CommitDate: Mon Dec 19 10:35:28 2022 +0000

    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 <[email protected]>
    (cherry picked from commit 15cce9806cff49d54a80b047dec33b021080d5cb)
    Reviewed-on: https://gerrit.libreoffice.org/c/core/+/144429
    Reviewed-by: Xisco Fauli <[email protected]>

diff --git a/sal/rtl/ustring.cxx b/sal/rtl/ustring.cxx
index 6fc0e87076c2..45ab6e166871 100644
--- a/sal/rtl/ustring.cxx
+++ b/sal/rtl/ustring.cxx
@@ -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;
     }

Reply via email to