Skip to content

Commit

Permalink
Browse files Browse the repository at this point in the history
Fix valgrind conditional jump on uninitialized value warning
(cherry-picked from b58f194)
  • Loading branch information
nyalldawson committed Jul 24, 2018
1 parent bfafa8d commit 16bfcff
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 16bfcff

Please sign in to comment.