diff options
| author | Brad Payne (Vir Linden) <vir@lindenlab.com> | 2013-04-26 10:01:09 -0400 | 
|---|---|---|
| committer | Brad Payne (Vir Linden) <vir@lindenlab.com> | 2013-04-26 10:01:09 -0400 | 
| commit | 638514ca0cbc666a324e757c8de4cceaaaeeadd4 (patch) | |
| tree | e095ebb960009c88dead046f57d89cb9a15553f7 | |
| parent | aac6472566675b9c50aee6beb15739db94c6e404 (diff) | |
SH-4142 FIX - avoid stack overflow in an AISv3 responder failure case.
| -rwxr-xr-x | indra/newview/llviewerinventory.cpp | 4 | 
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;  | 
