From 257521e7092848793bf2538780468d95ccb69331 Mon Sep 17 00:00:00 2001 From: Eike Rathke Date: Mon, 18 Nov 2013 23:12:37 +0100 Subject: fixed out-of-bounds string access Change-Id: I89e005f6f2d35e3343077b3b28e9fbb5135f9fff --- sc/source/ui/app/inputhdl.cxx | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) (limited to 'sc') 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 ) -- cgit