[Lldb-commits] [lldb] [lldb][MinidumpFileBuilder] Fix addition of MemoryList steam (PR #88564)

Miro Bucko via lldb-commits lldb-commits at lists.llvm.org
Fri Apr 12 14:26:41 PDT 2024


================
@@ -655,9 +655,10 @@ MinidumpFileBuilder::AddMemoryList(const lldb::ProcessSP &process_sp,
     const addr_t addr = core_range.range.start();
     const addr_t size = core_range.range.size();
     auto data_up = std::make_unique<DataBufferHeap>(size, 0);
+    Status read_error;
----------------
mbucko wrote:

Yes, this also works. Let me know if you'd like me to change it

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


More information about the lldb-commits mailing list