summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorEike Rathke <erack@redhat.com>2013-11-18 23:12:37 +0100
committerEike Rathke <erack@redhat.com>2013-11-18 23:13:34 +0100
commit257521e7092848793bf2538780468d95ccb69331 (patch)
treea93196474676833b369c8de731762468a1d97371
parentGPU Calc: turn on parallel sumifs and parallel sum reduce (diff)
downloadcore-257521e7092848793bf2538780468d95ccb69331.tar.gz
core-257521e7092848793bf2538780468d95ccb69331.zip
fixed out-of-bounds string access
Change-Id: I89e005f6f2d35e3343077b3b28e9fbb5135f9fff
-rw-r--r--sc/source/ui/app/inputhdl.cxx2
1 files changed, 1 insertions, 1 deletions
diff --git a/sc/source/ui/app/inputhdl.cxx b/sc/source/ui/app/inputhdl.cxx
index ad51f493ce89..05de58519ca5 100644
--- a/sc/source/ui/app/inputhdl.cxx
+++ b/sc/source/ui/app/inputhdl.cxx
@@ -2753,7 +2753,7 @@ void ScInputHandler::EnterHandler( sal_uInt8 nBlockMode )
{
// keine typographische Anfuehrungszeichen in Formeln
- if (aString[0] == '=')
+ if (!aString.isEmpty() && aString[0] == '=')
{
SvxAutoCorrect* pAuto = SvxAutoCorrCfg::Get().GetAutoCorrect();
if ( pAuto )