Skip to content
Snippets Groups Projects
Commit 0b4802c6 authored by Roberto Raggi's avatar Roberto Raggi
Browse files

Fixes: Possible crash in buildHelpId

parent 373a05af
No related branches found
No related tags found
No related merge requests found
...@@ -158,8 +158,10 @@ static QString buildHelpId(const FullySpecifiedType &type, ...@@ -158,8 +158,10 @@ static QString buildHelpId(const FullySpecifiedType &type,
scope = e->scope(); scope = e->scope();
} else if (const NamedType *t = type->asNamedType()) { } else if (const NamedType *t = type->asNamedType()) {
name = t->name(); name = t->name();
} else if (const Declaration *d = symbol->asDeclaration()) { } else if (symbol && symbol->isDeclaration()) {
if (d->scope() && d->scope()->owner()->isEnum()) { const Declaration *d = symbol->asDeclaration();
if (d->scope() && d->scope()->isEnumScope()) {
name = d->name(); name = d->name();
scope = d->scope(); scope = d->scope();
} }
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment