Skip to content

Commit

Permalink
Browse files Browse the repository at this point in the history
Fix uninitialized member identified by Coverity
  • Loading branch information
nyalldawson committed Jul 3, 2017
1 parent a259d9f commit 846f810
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/providers/arcgisrest/qgsafsshareddata.h
Expand Up @@ -40,7 +40,7 @@ class QgsAfsSharedData : public QObject
friend class QgsAfsProvider;
QgsDataSourceUri mDataSource;
QgsRectangle mExtent;
QgsWkbTypes::Type mGeometryType;
QgsWkbTypes::Type mGeometryType = QgsWkbTypes::Unknown;
QgsFields mFields;
QList<quint32> mObjectIds;
QMap<QgsFeatureId, QgsFeature> mCache;
Expand Down

0 comments on commit 846f810

Please sign in to comment.