Skip to content

Commit 642cb78

Browse files
committed
Copy m_plan_is_for_signal_trap member.
Otherwise it would stay uninitialized. Found by msan.
1 parent 357dc1e commit 642cb78

File tree

1 file changed

+1
-0
lines changed

1 file changed

+1
-0
lines changed

lldb/include/lldb/Symbol/UnwindPlan.h

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -393,6 +393,7 @@ class UnwindPlan {
393393
m_plan_is_sourced_from_compiler(rhs.m_plan_is_sourced_from_compiler),
394394
m_plan_is_valid_at_all_instruction_locations(
395395
rhs.m_plan_is_valid_at_all_instruction_locations),
396+
m_plan_is_for_signal_trap(rhs.m_plan_is_for_signal_trap),
396397
m_lsda_address(rhs.m_lsda_address),
397398
m_personality_func_addr(rhs.m_personality_func_addr) {
398399
m_row_list.reserve(rhs.m_row_list.size());

0 commit comments

Comments
 (0)