- _running_help was unitialized (thanx schubi)
authorJan Kupec <jkupec@suse.cz>
Mon, 3 Dec 2007 12:18:53 +0000 (12:18 +0000)
committerJan Kupec <jkupec@suse.cz>
Mon, 3 Dec 2007 12:18:53 +0000 (12:18 +0000)
src/zypper.cc

index 03e92b1..ead89c0 100644 (file)
@@ -54,7 +54,8 @@ IMPL_PTR_TYPE(Zypper);
 Zypper::Zypper()
   : _argc(0), _argv(NULL),
     _command(ZypperCommand::NONE),
-    _exiting(false), _exit_code(ZYPPER_EXIT_OK), _running_shell(false),
+    _exiting(false), _exit_code(ZYPPER_EXIT_OK),
+    _running_shell(false), _running_help(false),
     _sh_argc(0), _sh_argv(NULL)
 {
   MIL << "Hi, me zypper " VERSION " built " << __DATE__ << " " <<  __TIME__ << endl;