Added if (!null) guard around description strings.
This commit is contained in:
@@ -73,7 +73,7 @@ bool Node_readLocalData(Object& obj, Input& fr)
|
||||
|
||||
while (!fr.eof() && fr[0].getNoNestedBrackets()>entry)
|
||||
{
|
||||
node.addDescription(fr[0].getStr());
|
||||
if (fr[0].getStr()) node.addDescription(std::string(fr[0].getStr()));
|
||||
++fr;
|
||||
}
|
||||
iteratorAdvanced = true;
|
||||
|
||||
Reference in New Issue
Block a user