Skip to content

Commit

Permalink
Browse files Browse the repository at this point in the history
Fix Coverity uninitialized member warning
  • Loading branch information
nyalldawson committed May 2, 2017
1 parent 81e79d9 commit a2327d3
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/providers/virtual/qgsvirtuallayerfeatureiterator.h
Expand Up @@ -68,7 +68,7 @@ class QgsVirtualLayerFeatureIterator : public QgsAbstractFeatureIteratorFromSour

QgsAttributeList mAttributes;
QString mSqlQuery;
QgsFeatureId mFid;
QgsFeatureId mFid = 0;

};

Expand Down

0 comments on commit a2327d3

Please sign in to comment.