Skip to content
Snippets Groups Projects
Commit 27801587 authored by Victor Poughon's avatar Victor Poughon
Browse files

Fix coverity #1350749

parent dd88866a
Branches
Tags
No related merge requests found
......@@ -49,7 +49,7 @@ public:
typedef struct Parameter
{
/** Maximum size of the internal patterns */
unsigned long MaxPatternSize;
unsigned long MaxPatternSize = 0;
/** First sampling pattern */
std::vector<bool> Pattern1;
......@@ -59,7 +59,7 @@ public:
std::vector<bool> Pattern2;
/** Seed used to randomly generate patterns (used only if greater than 0) */
unsigned int Seed;
unsigned int Seed = 0;
bool operator!=(const struct Parameter & param) const;
} ParameterType;
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Please register or to comment