https://github.com/labath commented:
This makes sense to me, but I'd like to hear what @jimingham thinks about this. > The current behaviour might cause crash on pretty printers. If the pretty > printer calls SBValue::GetChildMemberWithName when compute the synthetic > children or summary string and its type is T**, this might cause crash as it > will return nullptr or None in this case The code you linked to is problematic even with this fix. The returned value could be null due to bad/missing debug info or due to a new version of libstdc++ renaming the (private) member. That code should be using `GetChildAtNamePath`, which checks that all the intermediate nodes are present. https://github.com/llvm/llvm-project/pull/124048 _______________________________________________ lldb-commits mailing list lldb-commits@lists.llvm.org https://lists.llvm.org/cgi-bin/mailman/listinfo/lldb-commits