diff options
| author | 2015-01-12 14:10:53 +0100 | |
|---|---|---|
| committer | 2015-01-12 14:10:53 +0100 | |
| commit | 225322b46f888fb034c87aea45fdde3f941c6450 (patch) | |
| tree | 2363ae7b6c0281598e8dc8133908f1959e513f91 /src/configreader.cpp | |
| parent | Merge pull request #963 from SaberUK/insp20+nuke-data-dumper (diff) | |
Fix harmless uninitialized variable usage on startup if the config is incorrect
Diffstat (limited to 'src/configreader.cpp')
| -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; |
