diff options
author | Mathias Gumz <akira at fluxbox dot org> | 2010-09-17 21:34:03 (GMT) |
---|---|---|
committer | Mathias Gumz <akira at fluxbox dot org> | 2010-09-17 21:34:03 (GMT) |
commit | f3ad09c4ce70cc58871eeac49d640f213f3cd16f (patch) | |
tree | 674a8ea578c411304374d95c3db2ef64d78e0360 /src/main.cc | |
parent | 87cffef7f5d0bf960e5682fad68bd8186fc36e29 (diff) | |
download | fluxbox-f3ad09c4ce70cc58871eeac49d640f213f3cd16f.zip fluxbox-f3ad09c4ce70cc58871eeac49d640f213f3cd16f.tar.bz2 |
missing initializations
'valgrind' reported a lot of code branches based upon uninitialized
variables. some are not identified yet.
Diffstat (limited to 'src/main.cc')
-rw-r--r-- | src/main.cc | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/src/main.cc b/src/main.cc index dc42b27..300826e 100644 --- a/src/main.cc +++ b/src/main.cc | |||
@@ -183,6 +183,7 @@ static void showInfo(ostream &ostr) { | |||
183 | } | 183 | } |
184 | 184 | ||
185 | struct Options { | 185 | struct Options { |
186 | Options() : xsync(false) { } | ||
186 | std::string session_display; | 187 | std::string session_display; |
187 | std::string rc_file; | 188 | std::string rc_file; |
188 | std::string log_filename; | 189 | std::string log_filename; |