Revert "[LLDB][NFC][Reliability] Fix uninitialized variables from Coverity scan. Part 2"

This reverts commit b9aedd94e6.
This commit is contained in:
Slava Gurevich
2022-07-25 18:23:19 -07:00
parent 78015047b2
commit 9877159dd6
15 changed files with 30 additions and 39 deletions

View File

@@ -104,10 +104,7 @@ ThreadPlanCallFunction::ThreadPlanCallFunction(
m_ignore_breakpoints(options.DoesIgnoreBreakpoints()),
m_debug_execution(options.GetDebug()),
m_trap_exceptions(options.GetTrapExceptions()), m_function_addr(function),
m_start_addr(), m_function_sp(0), m_subplan_sp(),
m_cxx_language_runtime(nullptr), m_objc_language_runtime(nullptr),
m_stored_thread_state(), m_real_stop_info_sp(), m_constructor_errors(),
m_return_valobj_sp(), m_takedown_done(false),
m_function_sp(0), m_takedown_done(false),
m_should_clear_objc_exception_bp(false),
m_should_clear_cxx_exception_bp(false),
m_stop_address(LLDB_INVALID_ADDRESS), m_return_type(return_type) {
@@ -137,11 +134,8 @@ ThreadPlanCallFunction::ThreadPlanCallFunction(
m_ignore_breakpoints(options.DoesIgnoreBreakpoints()),
m_debug_execution(options.GetDebug()),
m_trap_exceptions(options.GetTrapExceptions()), m_function_addr(function),
m_start_addr(), m_function_sp(0), m_subplan_sp(),
m_cxx_language_runtime(nullptr), m_objc_language_runtime(nullptr),
m_stored_thread_state(), m_real_stop_info_sp(), m_constructor_errors(),
m_return_valobj_sp(), m_takedown_done(false), m_function_sp(0),
m_takedown_done(false), m_should_clear_objc_exception_bp(false),
m_function_sp(0), m_takedown_done(false),
m_should_clear_objc_exception_bp(false),
m_should_clear_cxx_exception_bp(false),
m_stop_address(LLDB_INVALID_ADDRESS), m_return_type(CompilerType()) {}