[Lldb-commits] [PATCH] D96307: [lldb] Fix crash in FormatEntity for mangled-name
Dave Lee via Phabricator via lldb-commits
lldb-commits at lists.llvm.org
Mon Feb 8 18:38:31 PST 2021
This revision was landed with ongoing or failed builds.
This revision was automatically updated to reflect the committed changes.
Closed by commit rG7dc324aafa2b: [lldb] Fix crash in FormatEntity for mangled-name (authored by kastiglione).
Repository:
rG LLVM Github Monorepo
CHANGES SINCE LAST ACTION
https://reviews.llvm.org/D96307/new/
https://reviews.llvm.org/D96307
Files:
lldb/source/Core/FormatEntity.cpp
Index: lldb/source/Core/FormatEntity.cpp
===================================================================
--- lldb/source/Core/FormatEntity.cpp
+++ lldb/source/Core/FormatEntity.cpp
@@ -1769,7 +1769,7 @@
return false;
s.PutCString(name);
- if (sc->block->GetContainingInlinedBlock()) {
+ if (sc->block && sc->block->GetContainingInlinedBlock()) {
if (const InlineFunctionInfo *inline_info =
sc->block->GetInlinedFunctionInfo()) {
s.PutCString(" [inlined] ");
-------------- next part --------------
A non-text attachment was scrubbed...
Name: D96307.322264.patch
Type: text/x-patch
Size: 513 bytes
Desc: not available
URL: <http://lists.llvm.org/pipermail/lldb-commits/attachments/20210209/41fffef8/attachment.bin>
More information about the lldb-commits
mailing list