diff options
author | Oz Linden <oz@lindenlab.com> | 2011-07-07 14:08:36 -0400 |
---|---|---|
committer | Oz Linden <oz@lindenlab.com> | 2011-07-07 14:08:36 -0400 |
commit | 5d92dc44026f7dd237aa871593080fd151064e62 (patch) | |
tree | 4f0c70e428824a0a01e38ff77850fb009b6c13f0 /indra/llcommon/llsdserialize.cpp | |
parent | 7614ceff24129643ecb96f57f0491507e4ff8dbd (diff) | |
parent | 4d77146b9016a4db37112e153e71c05c596f7fdc (diff) |
merge changes for 2.7.4 release
Diffstat (limited to 'indra/llcommon/llsdserialize.cpp')
-rw-r--r-- | indra/llcommon/llsdserialize.cpp | 4 |
1 files changed, 3 insertions, 1 deletions
diff --git a/indra/llcommon/llsdserialize.cpp b/indra/llcommon/llsdserialize.cpp index 5be5ecc492..bf62600514 100644 --- a/indra/llcommon/llsdserialize.cpp +++ b/indra/llcommon/llsdserialize.cpp @@ -2036,7 +2036,9 @@ std::string zip_llsd(LLSD& data) { //copy result into output if (strm.avail_out >= CHUNK) { - llerrs << "WTF?" << llendl; + free(output); + llwarns << "Failed to compress LLSD block." << llendl; + return std::string(); } have = CHUNK-strm.avail_out; |