[Libreoffice-commits] core.git: starmath/source

Takeshi Abe tabe at fixedpoint.jp
Wed Jun 29 14:46:20 UTC 2016


 starmath/source/parse.cxx |    4 ++--
 1 file changed, 2 insertions(+), 2 deletions(-)

New commits:
commit d5b05cafdec62209803e38010b3354660e3e67cd
Author: Takeshi Abe <tabe at fixedpoint.jp>
Date:   Wed Jun 29 14:54:09 2016 +0900

    starmath: Replace OSL_ENSURE with assert
    
    as negative n would be undefined for OUString::copy(..., n).
    
    Change-Id: I950ec60656142450a5d5f6804324f6080c9c4c2a
    Reviewed-on: https://gerrit.libreoffice.org/26753
    Tested-by: Jenkins <ci at libreoffice.org>
    Reviewed-by: Caolán McNamara <caolanm at redhat.com>
    Tested-by: Caolán McNamara <caolanm at redhat.com>

diff --git a/starmath/source/parse.cxx b/starmath/source/parse.cxx
index b7a0cf0..a25b3a1 100644
--- a/starmath/source/parse.cxx
+++ b/starmath/source/parse.cxx
@@ -460,7 +460,7 @@ void SmParser::NextToken()
             --aRes.EndPos;
         }
         sal_Int32 n = aRes.EndPos - nRealStart;
-        OSL_ENSURE( n >= 0, "length < 0" );
+        assert(n >= 0);
         m_aCurToken.eType      = TNUMBER;
         m_aCurToken.cMathChar  = '\0';
         m_aCurToken.nGroup     = TG::NONE;
@@ -482,7 +482,7 @@ void SmParser::NextToken()
     else if (aRes.TokenType & KParseType::IDENTNAME)
     {
         sal_Int32 n = aRes.EndPos - nRealStart;
-        OSL_ENSURE( n >= 0, "length < 0" );
+        assert(n >= 0);
         OUString aName( m_aBufferString.copy( nRealStart, n ) );
         const SmTokenTableEntry *pEntry = GetTokenTableEntry( aName );
 


More information about the Libreoffice-commits mailing list