summaryrefslogtreecommitdiff
path: root/indra
diff options
context:
space:
mode:
authorBrad Payne (Vir Linden) <vir@lindenlab.com>2013-04-26 10:01:09 -0400
committerBrad Payne (Vir Linden) <vir@lindenlab.com>2013-04-26 10:01:09 -0400
commit638514ca0cbc666a324e757c8de4cceaaaeeadd4 (patch)
treee095ebb960009c88dead046f57d89cb9a15553f7 /indra
parentaac6472566675b9c50aee6beb15739db94c6e404 (diff)
SH-4142 FIX - avoid stack overflow in an AISv3 responder failure case.
Diffstat (limited to 'indra')
-rwxr-xr-xindra/newview/llviewerinventory.cpp4
1 files changed, 2 insertions, 2 deletions
diff --git a/indra/newview/llviewerinventory.cpp b/indra/newview/llviewerinventory.cpp
index fbd6b292bd..c44552d7d2 100755
--- a/indra/newview/llviewerinventory.cpp
+++ b/indra/newview/llviewerinventory.cpp
@@ -1168,7 +1168,7 @@ public:
const LLSD& content = getContent();
if (!content.isMap())
{
- failureResult(HTTP_INTERNAL_ERROR, "Malformed response contents", content);
+ llwarns << "Malformed response contents" << content << llendl;
return;
}
llwarns << "failed for " << mItemUUID << " content: " << ll_pretty_print_sd(content) << llendl;
@@ -1347,7 +1347,7 @@ public:
const LLSD& content = getContent();
if (!content.isMap())
{
- failureResult(HTTP_INTERNAL_ERROR, "Malformed response contents", content);
+ llwarns << "Malformed response contents" << content << llendl;
return;
}
llwarns << "failed for " << mItemUUID << " content: " << ll_pretty_print_sd(content) << llendl;