[Lldb-commits] [lldb] [LLDB] Fix crash in TypeSystemClang::GetIndexofChildMemberWithName. (PR #117808)
via lldb-commits
lldb-commits at lists.llvm.org
Sun Dec 1 12:44:12 PST 2024
================
@@ -6754,12 +6754,12 @@ size_t TypeSystemClang::GetIndexOfChildMemberWithName(
llvm::StringRef field_name = field->getName();
if (field_name.empty()) {
CompilerType field_type = GetType(field->getType());
+ std::vector<uint32_t> save_indices = child_indexes;
----------------
cmtice wrote:
I *could* do this; before I go ahead, I would like confirmation that this is what folks really want me to do?
https://github.com/llvm/llvm-project/pull/117808
More information about the lldb-commits
mailing list