diff options
Diffstat (limited to 'indra/llxml/llxmlnode.cpp')
-rw-r--r-- | indra/llxml/llxmlnode.cpp | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/indra/llxml/llxmlnode.cpp b/indra/llxml/llxmlnode.cpp index 1fcacb46a5..bd465c30f0 100644 --- a/indra/llxml/llxmlnode.cpp +++ b/indra/llxml/llxmlnode.cpp @@ -492,7 +492,7 @@ void XMLCALL XMLData(void *userData, return; } } - value.append(LLString(s, 0, len)); + value.append(std::string(s, len)); current_node->setValue(value); } |