diff options
Diffstat (limited to 'src/ConfigData.cxx')
-rw-r--r-- | src/ConfigData.cxx | 5 |
1 files changed, 2 insertions, 3 deletions
diff --git a/src/ConfigData.cxx b/src/ConfigData.cxx index c6cabee6e..70e1e55ed 100644 --- a/src/ConfigData.cxx +++ b/src/ConfigData.cxx @@ -1,5 +1,5 @@ /* - * Copyright (C) 2003-2013 The Music Player Daemon Project + * Copyright (C) 2003-2014 The Music Player Daemon Project * http://www.musicpd.org * * This program is free software; you can redistribute it and/or modify @@ -26,7 +26,6 @@ #include "system/FatalError.hxx" #include <assert.h> -#include <string.h> #include <stdlib.h> int @@ -64,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() { |