asmith marked an inline comment as done. asmith added inline comments.
================ Comment at: source/Plugins/SymbolFile/PDB/SymbolFilePDB.cpp:499 auto type_list = GetTypeList(); - type_list->Insert(result); + if (type_list) + type_list->Insert(result); ---------------- zturner wrote: > Why would this return `nullptr`? No idea but it does. TypeList *Module::GetTypeList() { SymbolVendor *symbols = GetSymbolVendor(); if (symbols) return &symbols->GetTypeList(); return nullptr; } Repository: rL LLVM https://reviews.llvm.org/D44165 _______________________________________________ lldb-commits mailing list lldb-commits@lists.llvm.org http://lists.llvm.org/cgi-bin/mailman/listinfo/lldb-commits