summaryrefslogtreecommitdiff
path: root/indra/newview/llxmlrpctransaction.cpp
diff options
context:
space:
mode:
authorAndrey Lihatskiy <alihatskiy@productengine.com>2024-07-22 18:54:09 +0300
committerGitHub <noreply@github.com>2024-07-22 18:54:09 +0300
commitdc2aab4ee42e4e7ecf14d475b803446fee422cbb (patch)
treee69eb8ce7fb2857ba24c348b7b738fd962591e4b /indra/newview/llxmlrpctransaction.cpp
parent75fb5c0d5e54c36327cfdca17e6ccc1682743fe0 (diff)
parent15877bf396f1b37784a8449540335960190862d0 (diff)
Merge pull request #2085 from RyeMutt/crash-fixes
Fix various nullptr crashes
Diffstat (limited to 'indra/newview/llxmlrpctransaction.cpp')
-rw-r--r--indra/newview/llxmlrpctransaction.cpp2
1 files changed, 1 insertions, 1 deletions
diff --git a/indra/newview/llxmlrpctransaction.cpp b/indra/newview/llxmlrpctransaction.cpp
index ba48b58f3b..48461241a2 100644
--- a/indra/newview/llxmlrpctransaction.cpp
+++ b/indra/newview/llxmlrpctransaction.cpp
@@ -316,7 +316,7 @@ bool LLXMLRPCTransaction::Impl::process()
if (!LLXMLNode::parseBuffer(mResponseText.data(), mResponseText.size(),
root, nullptr))
{
- LL_WARNS() << "Failed parsing XML in response; request URI: "
+ LL_WARNS() << "Failed parsing XML in response; request URI: "
<< mURI << LL_ENDL;
}
else if (parseResponse(root))