Skip to content

Commit

Permalink
Fix potential crash
Browse files Browse the repository at this point in the history
  • Loading branch information
nyalldawson committed Aug 29, 2016
1 parent 8e19f72 commit f23b778
Showing 1 changed file with 5 additions and 2 deletions.
7 changes: 5 additions & 2 deletions src/core/qgsvectorlayer.cpp
Expand Up @@ -1923,8 +1923,11 @@ bool QgsVectorLayer::writeSymbology( QDomNode& node, QDomDocument& doc, QString&

if ( hasGeometryType() )
{
QDomElement rendererElement = mRendererV2->save( doc );
node.appendChild( rendererElement );
if ( mRendererV2 )
{
QDomElement rendererElement = mRendererV2->save( doc );
node.appendChild( rendererElement );
}

if ( mLabeling )
{
Expand Down

0 comments on commit f23b778

Please sign in to comment.