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

Muthu Subramanian sumuthu at collabora.com
Tue Oct 22 02:41:18 PDT 2013


 oox/source/drawingml/chart/seriesconverter.cxx |    3 ++-
 1 file changed, 2 insertions(+), 1 deletion(-)

New commits:
commit e5f24e0c7c8f4799223c19359f4228f0b1a71461
Author: Muthu Subramanian <sumuthu at collabora.com>
Date:   Tue Oct 22 15:13:41 2013 +0530

    n#839727: Crash fix.

diff --git a/oox/source/drawingml/chart/seriesconverter.cxx b/oox/source/drawingml/chart/seriesconverter.cxx
index cc05567..1b56fef 100644
--- a/oox/source/drawingml/chart/seriesconverter.cxx
+++ b/oox/source/drawingml/chart/seriesconverter.cxx
@@ -660,7 +660,8 @@ Reference< XDataSeries > SeriesConverter::createDataSeries( const TypeGroupConve
         {
             // Use number format code from Value series
             DataSourceModel* pValues = mrModel.maSources.get( SeriesModel::VALUES ).get();
-            xLabels->maNumberFormat.maFormatCode = pValues->mxDataSeq->maFormatCode;
+            if( pValues )
+                xLabels->maNumberFormat.maFormatCode = pValues->mxDataSeq->maFormatCode;
         }
         DataLabelsConverter aLabelsConv( *this, *xLabels );
         aLabelsConv.convertFromModel( xDataSeries, rTypeGroup );


More information about the Libreoffice-commits mailing list