summaryrefslogtreecommitdiff
path: root/indra/llxml/llxmlnode.cpp
diff options
context:
space:
mode:
authorAndrey Lihatskiy <alihatskiy@productengine.com>2025-05-29 01:02:06 +0300
committerGitHub <noreply@github.com>2025-05-29 01:02:06 +0300
commit96023976f5af0b9af8e8d066d9ad4eea213f53ee (patch)
tree56b5fadba1f247fc42b6d3a3062154d61a43abac /indra/llxml/llxmlnode.cpp
parent3af711e6da9d0004ce1b565bfadee634f087b89a (diff)
parentd3bd73ab923b8010bb395505b95bcc38b661162e (diff)
Merge pull request #4181 from secondlife/marchcat/slua-editor-merge
SLua editor: Post-release merge
Diffstat (limited to 'indra/llxml/llxmlnode.cpp')
-rw-r--r--indra/llxml/llxmlnode.cpp1
1 files changed, 1 insertions, 0 deletions
diff --git a/indra/llxml/llxmlnode.cpp b/indra/llxml/llxmlnode.cpp
index 92bcb1a2ae..ec616cefbc 100644
--- a/indra/llxml/llxmlnode.cpp
+++ b/indra/llxml/llxmlnode.cpp
@@ -306,6 +306,7 @@ void LLXMLNode::addChild(LLXMLNodePtr& new_child)
// virtual
LLXMLNodePtr LLXMLNode::createChild(const char* name, bool is_attribute)
{
+ // Todo: validate to make sure node name is valid? (no spaces, etc)
return createChild(gStringTable.addStringEntry(name), is_attribute);
}