Kaydet (Commit) 33cbc99f authored tarafından dilekuzulmez's avatar dilekuzulmez Kaydeden (comit) Julien Nabet

tdf#99589 tolower / toupper - dangerous to Turks ...

Change-Id: I9b3f63ce6517674c42829fb27611425545bc6978
Reviewed-on: https://gerrit.libreoffice.org/36565Tested-by: 's avatarJenkins <ci@libreoffice.org>
Reviewed-by: 's avatarJulien Nabet <serval2412@yahoo.fr>
üst 7902ac9f
......@@ -89,7 +89,7 @@ sal_uInt32 GetNumber()
if( rtl::isAsciiDigit( static_cast<unsigned char>(c) ) )
l = l * nLog + (c - '0');
else
l = l * nLog + (toupper( c ) - 'A' + 10 );
l = l * nLog + (rtl::toAsciiUpperCase( static_cast<sal_uInt32>(c) ) - 'A' + 10 );
c = pFI->GetFastChar();
}
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment