diff options
author | Xiaohong Bao <bao@lindenlab.com> | 2011-03-08 14:59:40 -0700 |
---|---|---|
committer | Xiaohong Bao <bao@lindenlab.com> | 2011-03-08 14:59:40 -0700 |
commit | 55694cb241a4970b4ba560eae5642314a1308d56 (patch) | |
tree | eb42a75993bbe8cbe4d057ed0384820e5f3e5f3f | |
parent | 9f765cdb1302e1aa3b06c8203c9f4851fb3e97e3 (diff) |
fix for STORM-1053: crash at LLTextureCache::writeToCache
-rw-r--r-- | indra/newview/llappviewer.cpp | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/indra/newview/llappviewer.cpp b/indra/newview/llappviewer.cpp index a23f809b71..327a5ad698 100644 --- a/indra/newview/llappviewer.cpp +++ b/indra/newview/llappviewer.cpp @@ -1677,8 +1677,8 @@ bool LLAppViewer::cleanup() // Delete workers first // shotdown all worker threads before deleting them in case of co-dependencies - sTextureCache->shutdown(); sTextureFetch->shutdown(); + sTextureCache->shutdown(); sImageDecodeThread->shutdown(); sTextureFetch->shutDownTextureCacheThread() ; |