mirror of
https://github.com/qgis/QGIS.git
synced 2025-04-02 00:04:53 -04:00
Fix crash in geometry collection when working with empty collections
This commit is contained in:
parent
623a57a8a0
commit
6d59d144b5
@ -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();
|
||||
}
|
||||
|
||||
|
Loading…
x
Reference in New Issue
Block a user