[Libreoffice-commits] .: xmloff/source

Libreoffice Gerrit user logerrit at kemper.freedesktop.org
Fri Oct 12 14:31:25 PDT 2012


 xmloff/source/chart/SchXMLTableContext.cxx |    3 ++-
 1 file changed, 2 insertions(+), 1 deletion(-)

New commits:
commit dcaf8a871c3ce47e4b51b5c026e47d1ad03f5696
Author: Julien Nabet <serval2412 at yahoo.fr>
Date:   Fri Oct 12 23:29:59 2012 +0200

    uninit variable
    
    Change-Id: I94870693fc269ab7a40e9ded482d259921316c38

diff --git a/xmloff/source/chart/SchXMLTableContext.cxx b/xmloff/source/chart/SchXMLTableContext.cxx
index c9c5857..5e0a67a 100644
--- a/xmloff/source/chart/SchXMLTableContext.cxx
+++ b/xmloff/source/chart/SchXMLTableContext.cxx
@@ -79,7 +79,8 @@ struct lcl_ApplyCellToData : public ::std::unary_function< SchXMLCell, void >
     lcl_ApplyCellToData( Sequence< double > & rOutData ) :
             m_rData( rOutData ),
             m_nIndex( 0 ),
-            m_nSize( rOutData.getLength())
+            m_nSize( rOutData.getLength()),
+            m_fNaN( 0.0 )
     {
         ::rtl::math::setNan( &m_fNaN );
     }


More information about the Libreoffice-commits mailing list