diff options
author | Ansariel <ansariel.hiller@phoenixviewer.com> | 2024-07-09 02:59:49 +0200 |
---|---|---|
committer | Andrey Lihatskiy <alihatskiy@productengine.com> | 2024-07-09 07:58:13 +0300 |
commit | 89c1767bd38ae97c9ca3ba120d8d5c0f94373c1b (patch) | |
tree | 4694ea91ce30e7cc0ee05954881ce8620a95ff57 /indra/llxml/llxmlnode.cpp | |
parent | a5a7c7c8f5b529f766147c06cfe834f2f0c5f74c (diff) |
Fix build error in llxmlnode.cpp
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 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) |