mirror of
https://github.com/llvm/llvm-project.git
synced 2025-04-16 17:46:40 +00:00
[lldb] Initialize active_row pointer variable
It's value is not set on all control flow paths. I believe this should fix the failure on some buildbots after #133247.
This commit is contained in:
parent
efbbdd69c7
commit
0509932bb6
@ -208,7 +208,7 @@ void RegisterContextUnwind::InitializeZerothFrame() {
|
||||
m_fast_unwind_plan_sp = GetFastUnwindPlanForFrame();
|
||||
m_full_unwind_plan_sp = GetFullUnwindPlanForFrame();
|
||||
|
||||
const UnwindPlan::Row *active_row;
|
||||
const UnwindPlan::Row *active_row = nullptr;
|
||||
lldb::RegisterKind row_register_kind = eRegisterKindGeneric;
|
||||
|
||||
// If we have LanguageRuntime UnwindPlan for this unwind, use those
|
||||
|
Loading…
x
Reference in New Issue
Block a user