diff options
author | Attila Molnar <attilamolnar@hush.com> | 2015-01-12 14:10:53 +0100 |
---|---|---|
committer | Attila Molnar <attilamolnar@hush.com> | 2015-01-12 14:10:53 +0100 |
commit | 225322b46f888fb034c87aea45fdde3f941c6450 (patch) | |
tree | 2363ae7b6c0281598e8dc8133908f1959e513f91 /src | |
parent | 50dd3523a3529fe542ec065fa68fb415a6b0e77a (diff) |
Fix harmless uninitialized variable usage on startup if the config is incorrect
Diffstat (limited to 'src')
-rw-r--r-- | src/configreader.cpp | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/src/configreader.cpp b/src/configreader.cpp index b5d2fdb16..bd147782e 100644 --- a/src/configreader.cpp +++ b/src/configreader.cpp @@ -35,6 +35,7 @@ #endif ServerConfig::ServerConfig() + : NoSnoticeStack(false) { WhoWasGroupSize = WhoWasMaxGroups = WhoWasMaxKeep = 0; RawLog = NoUserDns = HideBans = HideSplits = UndernetMsgPrefix = false; |