diff options
author | Nico Weber <nicolasweber@gmx.de> | 2019-04-10 17:31:34 +0000 |
---|---|---|
committer | Nico Weber <nicolasweber@gmx.de> | 2019-04-10 17:31:34 +0000 |
commit | 5f6eb1817af8d525ee93ac8a1f0cf9c881b3ebd3 (patch) | |
tree | 4ae8cad081f0ad5f35a02b2236bc65d1b752e446 /lldb/source/Plugins/ScriptInterpreter/Python/ScriptInterpreterPythonImpl.h | |
parent | 2064e45ce35a58d706b9b0601e785f94e3afe871 (diff) | |
download | llvm-5f6eb1817af8d525ee93ac8a1f0cf9c881b3ebd3.zip llvm-5f6eb1817af8d525ee93ac8a1f0cf9c881b3ebd3.tar.gz llvm-5f6eb1817af8d525ee93ac8a1f0cf9c881b3ebd3.tar.bz2 |
llvm-undname: Fix another crash-on-invalid
This fixes a regression from https://reviews.llvm.org/D60354. We used to
SymbolNode *Symbol = demangleEncodedSymbol(MangledName, QN);
if (Symbol) {
Symbol->Name = QN;
}
but changed that to
SymbolNode *Symbol = demangleEncodedSymbol(MangledName, QN);
if (Error)
return nullptr;
Symbol->Name = QN;
and one branch somewhere returned a nullptr without setting Error.
Looking at the code changed in r340083 and r340710 that branch looks
like a remnant from an earlier attempt to demangle RTTI descriptors
that has since been rewritten -- so just remove this branch. It
shouldn't change behavior for correctly mangled symbols.
llvm-svn: 358112
Diffstat (limited to 'lldb/source/Plugins/ScriptInterpreter/Python/ScriptInterpreterPythonImpl.h')
0 files changed, 0 insertions, 0 deletions