Skip to content

Commit

Permalink
Browse files Browse the repository at this point in the history
Fix valgrind conditional jump on uninitialized value warning
  • Loading branch information
nyalldawson committed Jul 23, 2018
1 parent 5e37e82 commit b58f194
Showing 1 changed file with 3 additions and 3 deletions.
6 changes: 3 additions & 3 deletions src/providers/wms/qgswmscapabilities.h
Expand Up @@ -139,9 +139,9 @@ struct QgsWmsServiceProperty
QgsWmsContactInformationProperty contactInformation;
QString fees;
QString accessConstraints;
uint layerLimit;
uint maxWidth;
uint maxHeight;
uint layerLimit = 0;
uint maxWidth = 0;
uint maxHeight = 0;
};

//! Bounding Box Property structure
Expand Down

0 comments on commit b58f194

Please sign in to comment.