From f498d80c587033bffb9abedb2b0827ad8d4a2a32 Mon Sep 17 00:00:00 2001 From: Andrei Karas Date: Thu, 2 Feb 2012 05:11:50 +0300 Subject: Add some checks after automatic checking. --- src/configuration.h | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) (limited to 'src/configuration.h') diff --git a/src/configuration.h b/src/configuration.h index 00479933e..122badfd5 100644 --- a/src/configuration.h +++ b/src/configuration.h @@ -253,10 +253,10 @@ class Configuration : public ConfigurationObject void setSilent(const std::string &key, const std::string &value); inline void setValue(const std::string &key, const char *value) - { setValue(key, std::string(value)); } + { if (value) setValue(key, std::string(value)); } inline void setSilent(const std::string &key, const char *value) - { setSilent(key, std::string(value)); } + { if (value) setSilent(key, std::string(value)); } inline void setValue(const std::string &key, float value) { setValue(key, toString(value)); } -- cgit v1.2.3-60-g2f50