From dad599043b1e64d1ec02691c9f98e630e5edc68c Mon Sep 17 00:00:00 2001 From: Jan Kupec Date: Mon, 3 Dec 2007 12:18:53 +0000 Subject: [PATCH] - _running_help was unitialized (thanx schubi) --- src/zypper.cc | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/src/zypper.cc b/src/zypper.cc index 03e92b1..ead89c0 100644 --- a/src/zypper.cc +++ b/src/zypper.cc @@ -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; -- 2.7.4