Skip to content
Snippets Groups Projects
Commit 7de49ce1 authored by Xiaohong Bao's avatar Xiaohong Bao
Browse files

fix for EXT-6435: crash at writeEntriesAndClose: ASSERT (num_entries ==...

fix for EXT-6435: crash at writeEntriesAndClose: ASSERT (num_entries == mHeaderEntriesInfo.mEntries)
parent a0022e65
No related branches found
No related tags found
No related merge requests found
...@@ -852,8 +852,8 @@ bool LLTextureCache::updateTextureEntryList(const LLUUID& id, S32 bodysize) ...@@ -852,8 +852,8 @@ bool LLTextureCache::updateTextureEntryList(const LLUUID& id, S32 bodysize)
} }
else if (oldbodysize != entry.mBodySize) else if (oldbodysize != entry.mBodySize)
{ {
// TODO: change to llwarns // only happens to 64 bits systems, do not know why.
llerrs << "Entry mismatch in mTextureSizeMap / mHeaderIDMap" llwarns << "Entry mismatch in mTextureSizeMap / mHeaderIDMap"
<< " idx=" << idx << " oldsize=" << oldbodysize << " entrysize=" << entry.mBodySize << llendl; << " idx=" << idx << " oldsize=" << oldbodysize << " entrysize=" << entry.mBodySize << llendl;
} }
updateEntry(idx, entry, entry.mImageSize, bodysize); updateEntry(idx, entry, entry.mImageSize, bodysize);
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment