Skip to content

Commit

Permalink
Fix coverity uninitialized member warning
Browse files Browse the repository at this point in the history
  • Loading branch information
nyalldawson committed Dec 18, 2017
1 parent d998c3e commit d49a3a2
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/core/qgscoordinatetransform.h
Expand Up @@ -385,7 +385,7 @@ class CORE_EXPORT QgsCoordinateTransform
int datumTransformId = -1;

//! EPSG code for the transform, or 0 if not found in EPSG database
int epsgCode;
int epsgCode = 0;

//! Source CRS auth ID
QString sourceCrsAuthId;
Expand Down

0 comments on commit d49a3a2

Please sign in to comment.