diff options
| author | Xiaohong Bao <bao@lindenlab.com> | 2010-03-29 11:32:47 -0600 | 
|---|---|---|
| committer | Xiaohong Bao <bao@lindenlab.com> | 2010-03-29 11:32:47 -0600 | 
| commit | 7de49ce1d1fec00988a382a57fd8ccd3dcddd19b (patch) | |
| tree | b1fdd8b9989f4438b50557845ea5ec3b8c12e144 /indra | |
| parent | a0022e65ec41b1ce0868d75643338510921d1b6b (diff) | |
fix for EXT-6435: crash at writeEntriesAndClose: ASSERT (num_entries == mHeaderEntriesInfo.mEntries)
Diffstat (limited to 'indra')
| -rw-r--r-- | indra/newview/lltexturecache.cpp | 4 | 
1 files changed, 2 insertions, 2 deletions
| diff --git a/indra/newview/lltexturecache.cpp b/indra/newview/lltexturecache.cpp index aa081ff7bb..67b0ca216e 100644 --- a/indra/newview/lltexturecache.cpp +++ b/indra/newview/lltexturecache.cpp @@ -852,8 +852,8 @@ bool LLTextureCache::updateTextureEntryList(const LLUUID& id, S32 bodysize)  			}			  			else if (oldbodysize != entry.mBodySize)  			{ -				// TODO: change to llwarns -				llerrs << "Entry mismatch in mTextureSizeMap / mHeaderIDMap" +				// only happens to 64 bits systems, do not know why. +				llwarns << "Entry mismatch in mTextureSizeMap / mHeaderIDMap"  					   << " idx=" << idx << " oldsize=" << oldbodysize << " entrysize=" << entry.mBodySize << llendl;  			}  			updateEntry(idx, entry, entry.mImageSize, bodysize);			 | 
