forked from qt-creator/qt-creator
Fixed two crashes with C++ engine handling
These checks are necessary cause of a recent change in the C++ engine. Reviewed-by: Roberto Raggi
This commit is contained in:
@@ -256,7 +256,7 @@ void CppHoverHandler::updateHelpIdAndTooltip(TextEditor::ITextEditor *editor, in
|
|||||||
const QList<TypeOfExpression::Result> types =
|
const QList<TypeOfExpression::Result> types =
|
||||||
typeOfExpression(expression, doc, lastSymbol);
|
typeOfExpression(expression, doc, lastSymbol);
|
||||||
|
|
||||||
if (!types.isEmpty()) {
|
if (!types.isEmpty() && types.first().first) {
|
||||||
FullySpecifiedType firstType = types.first().first;
|
FullySpecifiedType firstType = types.first().first;
|
||||||
Symbol *symbol = types.first().second;
|
Symbol *symbol = types.first().second;
|
||||||
FullySpecifiedType docType = firstType;
|
FullySpecifiedType docType = firstType;
|
||||||
|
@@ -217,7 +217,7 @@ void Scope::enterSymbol(Symbol *symbol)
|
|||||||
|
|
||||||
Symbol *Scope::lookat(Identifier *id) const
|
Symbol *Scope::lookat(Identifier *id) const
|
||||||
{
|
{
|
||||||
if (! _hash)
|
if (! _hash || ! id)
|
||||||
return 0;
|
return 0;
|
||||||
|
|
||||||
const unsigned h = id->hashCode() % _hashSize;
|
const unsigned h = id->hashCode() % _hashSize;
|
||||||
|
Reference in New Issue
Block a user