diff options
author | Jacob Lalonde <jalalonde@fb.com> | 2024-08-02 18:38:05 -0700 |
---|---|---|
committer | GitHub <noreply@github.com> | 2024-08-02 18:38:05 -0700 |
commit | 34766d0d488ba2fbefa80dcd0cc8720a0e753448 (patch) | |
tree | ed658ed575f8d4499f54c5f208bd99316883d84d /lldb/source/Plugins/ObjectFile/PECOFF/ObjectFilePECOFF.cpp | |
parent | 259ca9ee9c4d9f7ba2d05db9fe05f782a865aeb5 (diff) | |
download | llvm-34766d0d488ba2fbefa80dcd0cc8720a0e753448.zip llvm-34766d0d488ba2fbefa80dcd0cc8720a0e753448.tar.gz llvm-34766d0d488ba2fbefa80dcd0cc8720a0e753448.tar.bz2 |
[LLDB][SBSaveCore] Fix bug where default values are not propagated. (#101770)
In #100443, Mach-o and Minidump now only call process API's that take a
`SaveCoreOption` as the container for the style and information if a
thread should be included in the core or not. This introduced a bug
where in subsequent method calls we were not honoring the defaults of
both implementations.
~~To solve this I have made a copy of each SaveCoreOptions that is
mutable by the respective plugin. Originally I wanted to leave the
SaveCoreOptions as non const so these default value mutations could be
shown back to the user. Changing that behavior is outside of the scope
of this bugfix, but is context for why we are making a copy.~~
Removed const on the savecoreoptions so defaults can be inspected by the
user
CC: @Michael137
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 bda691a..9d01089 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, - const lldb_private::SaveCoreOptions &options, + lldb_private::SaveCoreOptions &options, lldb_private::Status &error) { // Outfile and process_sp are validated by PluginManager::SaveCore assert(options.GetOutputFile().has_value()); |