From 1fcd8dfb70124acc935c24e066dfd3e2144baec9 Mon Sep 17 00:00:00 2001 From: Krishna Keshav Date: Thu, 5 May 2016 23:28:29 +0530 Subject: tdf#99589 tolower / toupper - dangerous to Turks ... replaced tolower with to AsciiLowerCase() in lingucomponent/source/languageguessing/altstrfunc.cxx l10ntools/source/gL10nMem.cxx Change-Id: I1340da18b263a4a921e2e8d96c0f133fe300086e Reviewed-on: https://gerrit.libreoffice.org/24682 Tested-by: Jenkins Reviewed-by: Michael Meeks --- lingucomponent/source/languageguessing/altstrfunc.cxx | 5 ++++- 1 file changed, 4 insertions(+), 1 deletion(-) (limited to 'lingucomponent/source/languageguessing') diff --git a/lingucomponent/source/languageguessing/altstrfunc.cxx b/lingucomponent/source/languageguessing/altstrfunc.cxx index 1fb29436c624..a155ee026885 100644 --- a/lingucomponent/source/languageguessing/altstrfunc.cxx +++ b/lingucomponent/source/languageguessing/altstrfunc.cxx @@ -20,6 +20,9 @@ #include "altstrfunc.hxx" #include +#include + +using namespace rtl; int start(const std::string &s1, const std::string &s2){ size_t i; @@ -30,7 +33,7 @@ int start(const std::string &s1, const std::string &s2){ min = s2.length(); for(i = 0; i < min && s2[i] && s1[i] && !ret; i++){ - ret = toupper(s1[i]) - toupper(s2[i]); + ret = toAsciiUpperCase(s1[i]) - toAsciiUpperCase(s2[i]); if(s1[i] == '.' || s2[i] == '.'){ret = 0;}//. is a neutral character } return ret; -- cgit