diff options
Diffstat (limited to 'lldb/source/Core/Section.cpp')
-rw-r--r-- | lldb/source/Core/Section.cpp | 4 |
1 files changed, 4 insertions, 0 deletions
diff --git a/lldb/source/Core/Section.cpp b/lldb/source/Core/Section.cpp index f1f4dc11271..0c9f8ec398f 100644 --- a/lldb/source/Core/Section.cpp +++ b/lldb/source/Core/Section.cpp @@ -36,6 +36,8 @@ Section::Section (const ModuleSP &module_sp, m_file_size (file_size), m_children (), m_fake (false), + m_encrypted (false), + m_thread_specific (false), m_linked_section_wp(), m_linked_offset (0) { @@ -65,6 +67,8 @@ Section::Section (const lldb::SectionSP &parent_section_sp, m_file_size (file_size), m_children (), m_fake (false), + m_encrypted (false), + m_thread_specific (false), m_linked_section_wp(), m_linked_offset (0) { |