From 1c8930737c839a9ada047b5848fab7a6c40a025f Mon Sep 17 00:00:00 2001
From: Roberto Raggi <roberto.raggi@nokia.com>
Date: Tue, 9 Mar 2010 14:28:23 +0100
Subject: [PATCH] Fixed possible crash when asking for the icon of a top-level
 symbol (e.g. the global namespace).

---
 src/libs/cplusplus/Icons.cpp | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/src/libs/cplusplus/Icons.cpp b/src/libs/cplusplus/Icons.cpp
index 69b59b937a9..2efa8b33375 100644
--- a/src/libs/cplusplus/Icons.cpp
+++ b/src/libs/cplusplus/Icons.cpp
@@ -84,7 +84,7 @@ QIcon Icons::iconForSymbol(const Symbol *symbol) const
         } else if (symbol->isPrivate()) {
             return _funcPrivateIcon;
         }
-    } else if (symbol->scope()->isEnumScope()) {
+    } else if (symbol->scope() && symbol->scope()->isEnumScope()) {
         return _enumeratorIcon;
     } else if (symbol->isDeclaration() || symbol->isArgument()) {
         if (symbol->isPublic()) {
-- 
GitLab