diff options
| author | Nat Goodspeed <nat@lindenlab.com> | 2012-12-05 20:08:32 -0500 | 
|---|---|---|
| committer | Nat Goodspeed <nat@lindenlab.com> | 2012-12-05 20:08:32 -0500 | 
| commit | a9ada0cc6a1418da0908f995b1369912a270b22d (patch) | |
| tree | 577a0e4b042d45be8754254cf43c973b5e9f0b99 /indra/newview | |
| parent | e1da5bda78282a75ee56a30a0019ba36d4fb599d (diff) | |
| parent | 168040bad2d73e4026c5480b7f362ebb062d33bd (diff) | |
merge changes for DRTVWR-259
Diffstat (limited to 'indra/newview')
| -rw-r--r-- | indra/newview/lltexturecache.cpp | 6 | 
1 files changed, 5 insertions, 1 deletions
| diff --git a/indra/newview/lltexturecache.cpp b/indra/newview/lltexturecache.cpp index 2d463f0afa..305f6fca0f 100644 --- a/indra/newview/lltexturecache.cpp +++ b/indra/newview/lltexturecache.cpp @@ -1937,7 +1937,11 @@ bool LLTextureCache::writeToFastCache(S32 id, LLPointer<LLImageRaw> raw, S32 dis  		openFastCache();  		mFastCachep->seek(APR_SET, offset);	 -		llassert_always(mFastCachep->write(mFastCachePadBuffer, TEXTURE_FAST_CACHE_ENTRY_SIZE) == TEXTURE_FAST_CACHE_ENTRY_SIZE); +		 +		//no need to do this assertion check. When it fails, let it fail quietly. +		//this failure could happen because other viewer removes the fast cache file when clearing cache. +		//--> llassert_always(mFastCachep->write(mFastCachePadBuffer, TEXTURE_FAST_CACHE_ENTRY_SIZE) == TEXTURE_FAST_CACHE_ENTRY_SIZE); +		mFastCachep->write(mFastCachePadBuffer, TEXTURE_FAST_CACHE_ENTRY_SIZE);  		closeFastCache(true);  	} | 
