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

Jason Molenda via lldb-commits lldb-commits at lists.llvm.org
Fri Apr 12 21:19:43 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;
----------------
jasonmolenda wrote:

I don't work on this plugin myself, I'm sure the way you expressed the idea is fine, it's little more than a style difference.

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


More information about the lldb-commits mailing list