From c8ea99e9832c2098639b268377df7486309f66fb Mon Sep 17 00:00:00 2001 From: Thomas Arnhold Date: Tue, 13 May 2014 05:22:47 +0200 Subject: i#64348 basic: fix CDec() crash if string is empty Change-Id: I92e9472e14c00a6550081f0d58a352faa5b78b98 Reviewed-on: https://gerrit.libreoffice.org/9337 Tested-by: David Tardon Reviewed-by: David Tardon --- basic/source/sbx/sbxdec.cxx | 6 +++++- 1 file changed, 5 insertions(+), 1 deletion(-) diff --git a/basic/source/sbx/sbxdec.cxx b/basic/source/sbx/sbxdec.cxx index 276b78857e56..25d7936b4592 100644 --- a/basic/source/sbx/sbxdec.cxx +++ b/basic/source/sbx/sbxdec.cxx @@ -194,6 +194,8 @@ void SbxDecimal::setUInt( unsigned int val ) bool SbxDecimal::setString( OUString* pOUString ) { + assert(pOUString); + static LCID nLANGID = MAKELANGID( LANG_ENGLISH, SUBLANG_ENGLISH_US ); // Convert delimiter @@ -472,7 +474,9 @@ start: case SbxLPSTR: case SbxSTRING: case SbxBYREF | SbxSTRING: - pnDecRes->setString( p->pOUString ); break; + if( p->pOUString ) + pnDecRes->setString( p->pOUString ); + break; case SbxOBJECT: { SbxValue* pVal = PTR_CAST(SbxValue,p->pObj); -- cgit