diff options
author | Haojian Wu <hokein.wu@gmail.com> | 2024-08-05 09:24:35 +0200 |
---|---|---|
committer | Haojian Wu <hokein.wu@gmail.com> | 2024-08-05 09:37:36 +0200 |
commit | 86f7374078288e2b3d3d0fd66428f7752e2319e6 (patch) | |
tree | 4aff933b6fb4a1f7728b517d618635c42ea2cdc1 /lldb/source/Plugins/ObjectFile/PECOFF/ObjectFilePECOFF.cpp | |
parent | bf540ce55bdcf49f74639d9fe8d7dff9e21c24c9 (diff) | |
download | llvm-86f7374078288e2b3d3d0fd66428f7752e2319e6.zip llvm-86f7374078288e2b3d3d0fd66428f7752e2319e6.tar.gz llvm-86f7374078288e2b3d3d0fd66428f7752e2319e6.tar.bz2 |
Revert "[LLDB][SBSaveCore] Fix bug where default values are not propagated. (#101770)"
This reverts commit 34766d0d488ba2fbefa80dcd0cc8720a0e753448 which
caused a msan failure, see comment https://github.com/llvm/llvm-project/pull/101770#issuecomment-2268373325 for details.
Diffstat (limited to 'lldb/source/Plugins/ObjectFile/PECOFF/ObjectFilePECOFF.cpp')
-rw-r--r-- | lldb/source/Plugins/ObjectFile/PECOFF/ObjectFilePECOFF.cpp | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/lldb/source/Plugins/ObjectFile/PECOFF/ObjectFilePECOFF.cpp b/lldb/source/Plugins/ObjectFile/PECOFF/ObjectFilePECOFF.cpp index 9d01089..bda691a 100644 --- a/lldb/source/Plugins/ObjectFile/PECOFF/ObjectFilePECOFF.cpp +++ b/lldb/source/Plugins/ObjectFile/PECOFF/ObjectFilePECOFF.cpp @@ -355,7 +355,7 @@ size_t ObjectFilePECOFF::GetModuleSpecifications( } bool ObjectFilePECOFF::SaveCore(const lldb::ProcessSP &process_sp, - lldb_private::SaveCoreOptions &options, + const lldb_private::SaveCoreOptions &options, lldb_private::Status &error) { // Outfile and process_sp are validated by PluginManager::SaveCore assert(options.GetOutputFile().has_value()); |