diff options
author | andreykproductengine <andreykproductengine@lindenlab.com> | 2017-11-27 19:04:41 +0200 |
---|---|---|
committer | andreykproductengine <andreykproductengine@lindenlab.com> | 2017-11-27 19:04:41 +0200 |
commit | 6d7c19623d44bbd9dcfcd047e3b3ab2120916481 (patch) | |
tree | 0308ef67fc694f799dc639b1c9d2daa76f9bf324 /indra/llcommon/llsdserialize.cpp | |
parent | 31f7f5d132d05364217b47830d4b0e6ca57ba9e3 (diff) |
MAINT-8022 Crashes in unzip_llsd
Diffstat (limited to 'indra/llcommon/llsdserialize.cpp')
-rw-r--r-- | indra/llcommon/llsdserialize.cpp | 1 |
1 files changed, 0 insertions, 1 deletions
diff --git a/indra/llcommon/llsdserialize.cpp b/indra/llcommon/llsdserialize.cpp index 3a219eb998..7f286f5e68 100644 --- a/indra/llcommon/llsdserialize.cpp +++ b/indra/llcommon/llsdserialize.cpp @@ -2188,7 +2188,6 @@ bool unzip_llsd(LLSD& data, std::istream& is, S32 size) U8* new_result = (U8*)realloc(result, cur_size + have); if (new_result == NULL) { - LL_WARNS() << "Failed to unzip LLSD block: can't reallocate memory, current size: " << cur_size << " bytes; requested " << cur_size + have << " bytes." << LL_ENDL; inflateEnd(&strm); if (result) { |