Fix Svace warning issue
[platform/core/uifw/dali-toolkit.git] / dali-toolkit / internal / text / property-string-parser.cpp
index c120e00..42b1050 100644 (file)
@@ -72,8 +72,10 @@ void ParsePropertyString( const std::string& property, Property::Map& map )
   if( parser.Parse( property ) )
   {
     const TreeNode* const node = parser.GetRoot();
-
-    CreatePropertyMap( node, map );
+    if( node )
+    {
+      CreatePropertyMap( node, map );
+    }
   }
 }