Skip to content

Commit

Permalink
Copy m_plan_is_for_signal_trap member.
Browse files Browse the repository at this point in the history
Otherwise it would stay uninitialized. Found by msan.
  • Loading branch information
d0k committed Aug 26, 2020
1 parent 357dc1e commit 642cb78
Showing 1 changed file with 1 addition and 0 deletions.
1 change: 1 addition & 0 deletions lldb/include/lldb/Symbol/UnwindPlan.h
Original file line number Diff line number Diff line change
Expand Up @@ -393,6 +393,7 @@ class UnwindPlan {
m_plan_is_sourced_from_compiler(rhs.m_plan_is_sourced_from_compiler),
m_plan_is_valid_at_all_instruction_locations(
rhs.m_plan_is_valid_at_all_instruction_locations),
m_plan_is_for_signal_trap(rhs.m_plan_is_for_signal_trap),
m_lsda_address(rhs.m_lsda_address),
m_personality_func_addr(rhs.m_personality_func_addr) {
m_row_list.reserve(rhs.m_row_list.size());
Expand Down

0 comments on commit 642cb78

Please sign in to comment.