Skip to content

Commit

Permalink
Browse files Browse the repository at this point in the history
Fix crash
  • Loading branch information
mhugent committed Apr 28, 2016
1 parent 679e8f2 commit 381895f
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/core/qgsvectorlayereditbuffer.cpp
Expand Up @@ -714,7 +714,7 @@ QgsAbstractGeometryV2* QgsVectorLayerEditBuffer::outputGeometry( QgsAbstractGeom
QgsGeometryCollectionV2* geomCollection = dynamic_cast<QgsGeometryCollectionV2*>( outputGeom );
if ( geomCollection )
{
geomCollection->addGeometry( geom );
geomCollection->addGeometry( geom->clone() );
}
}

Expand Down

0 comments on commit 381895f

Please sign in to comment.