Commit d7b98863 authored by Max Kellermann's avatar Max Kellermann

ConfigData: initialise "used" in second constructor

parent 1543e529
...@@ -63,7 +63,7 @@ block_param::GetBoolValue() const ...@@ -63,7 +63,7 @@ block_param::GetBoolValue() const
} }
config_param::config_param(const char *_value, int _line) config_param::config_param(const char *_value, int _line)
:next(nullptr), value(_value), line(_line) {} :next(nullptr), value(_value), line(_line), used(false) {}
config_param::~config_param() config_param::~config_param()
{ {
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment