[Lldb-commits] [lldb] [llvm] [LLDB][Minidump] Support minidumps where there are multiple exception streams (PR #97470)

via lldb-commits lldb-commits at lists.llvm.org
Fri Jul 5 11:37:13 PDT 2024


================
@@ -209,7 +208,20 @@ Status ProcessMinidump::DoLoadCore() {
   GetTarget().SetArchitecture(arch, true /*set_platform*/);
 
   m_thread_list = m_minidump_parser->GetThreads();
-  m_active_exception = m_minidump_parser->GetExceptionStream();
+  std::vector<minidump::ExceptionStream> exception_streams =
----------------
jeffreytan81 wrote:

Do not return by a vector of copies, instead return a value of const references/pointers.

https://github.com/llvm/llvm-project/pull/97470


More information about the lldb-commits mailing list