aboutsummaryrefslogtreecommitdiffstatshomepage
path: root/linden/indra/newview/lltexturecache.cpp
diff options
context:
space:
mode:
authorAleric Inglewood2010-10-25 17:37:46 +0200
committerAleric Inglewood2010-10-25 17:37:46 +0200
commit03852da89ad24c9e1edcf9cb50dbda31dd3ab43a (patch)
treeece1cc2443affbea4f5fad582d0b357a45e0b950 /linden/indra/newview/lltexturecache.cpp
parentFixed a locking issue with regard to texture cache purging. (diff)
downloadmeta-impy-03852da89ad24c9e1edcf9cb50dbda31dd3ab43a.zip
meta-impy-03852da89ad24c9e1edcf9cb50dbda31dd3ab43a.tar.gz
meta-impy-03852da89ad24c9e1edcf9cb50dbda31dd3ab43a.tar.bz2
meta-impy-03852da89ad24c9e1edcf9cb50dbda31dd3ab43a.tar.xz
IMP-667: WARNING: remove: Attempting to remove filename: /ramdisk/imprudence/cache/textures/*/*.texture
This turned out to be a simple matter of trying to remove non-existant files: A texture with a 'body size' of 0 doesn't have a texture body file.
Diffstat (limited to '')
-rw-r--r--linden/indra/newview/lltexturecache.cpp10
1 files changed, 9 insertions, 1 deletions
diff --git a/linden/indra/newview/lltexturecache.cpp b/linden/indra/newview/lltexturecache.cpp
index 56f3719..a1a9a39 100644
--- a/linden/indra/newview/lltexturecache.cpp
+++ b/linden/indra/newview/lltexturecache.cpp
@@ -1382,7 +1382,15 @@ void LLTextureCache::purgeTextures(bool validate)
1382 { 1382 {
1383 purge_count++; 1383 purge_count++;
1384 LL_DEBUGS("TextureCache") << "PURGING: " << filename << LL_ENDL; 1384 LL_DEBUGS("TextureCache") << "PURGING: " << filename << LL_ENDL;
1385 LLAPRFile::remove(filename); 1385 if (entries[idx].mBodySize > 0)
1386 {
1387 LLAPRFile::remove(filename);
1388 }
1389 else if (LLAPRFile::isExist(filename)) // Sanity check. Shouldn't exist.
1390 {
1391 LL_WARNS("TextureCache") << "Entry has zero body size but existing " << filename << ". Deleting file too..." << LL_ENDL;
1392 LLAPRFile::remove(filename);
1393 }
1386 cache_size -= entries[idx].mBodySize; 1394 cache_size -= entries[idx].mBodySize;
1387 mTexturesSizeTotal -= entries[idx].mBodySize; 1395 mTexturesSizeTotal -= entries[idx].mBodySize;
1388 entries[idx].mBodySize = 0; 1396 entries[idx].mBodySize = 0;