diff options
author | Max Kellermann <max@duempel.org> | 2013-11-13 20:30:34 +0100 |
---|---|---|
committer | Max Kellermann <max@duempel.org> | 2013-12-23 10:31:29 +0100 |
commit | d7b988638722d245152b108456af1aad8fc9b8a0 (patch) | |
tree | c285f766c906a6d345236ae6f900e3dc477dfa5f /src | |
parent | 1543e529f1e52ec135a644bd3faf7496f92b0a38 (diff) | |
download | mpd-d7b988638722d245152b108456af1aad8fc9b8a0.tar.gz mpd-d7b988638722d245152b108456af1aad8fc9b8a0.tar.xz mpd-d7b988638722d245152b108456af1aad8fc9b8a0.zip |
ConfigData: initialise "used" in second constructor
Diffstat (limited to 'src')
-rw-r--r-- | src/ConfigData.cxx | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/ConfigData.cxx b/src/ConfigData.cxx index b3c5c75fc..cd4e34a94 100644 --- a/src/ConfigData.cxx +++ b/src/ConfigData.cxx @@ -63,7 +63,7 @@ block_param::GetBoolValue() const } 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() { |