Fix crash in geometry collection when working with empty collections

This commit is contained in:
Nyall Dawson 2017-09-25 16:05:42 +10:00
parent 623a57a8a0
commit 6d59d144b5

View File

@ -624,11 +624,21 @@ double QgsGeometryCollection::vertexAngle( QgsVertexId vertex ) const
int QgsGeometryCollection::vertexCount( int part, int ring ) const
{
if ( part < 0 || part >= mGeometries.size() )
{
return 0;
}
return mGeometries[part]->vertexCount( 0, ring );
}
int QgsGeometryCollection::ringCount( int part ) const
{
if ( part < 0 || part >= mGeometries.size() )
{
return 0;
}
return mGeometries[part]->ringCount();
}