summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
-rw-r--r--indra/llxml/llxmlnode.cpp2
1 files changed, 1 insertions, 1 deletions
diff --git a/indra/llxml/llxmlnode.cpp b/indra/llxml/llxmlnode.cpp
index d6f9a56c9d..e695035461 100644
--- a/indra/llxml/llxmlnode.cpp
+++ b/indra/llxml/llxmlnode.cpp
@@ -3396,7 +3396,7 @@ bool LLXMLNode::fromXMLRPCValue(LLSD& target)
if (childp->hasName("base64"))
{
std::string decoded =
- LLBase64::decodeAsString(inner->getTextContents());
+ LLBase64::decodeAsString(childp->getTextContents());
size_t size = decoded.size();
LLSD::Binary binary(size);
if (size)