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 | 7e7ea1eec4ab69fb46c5ce3749ef353fc5850829 (patch) | |
tree | 21d48e195bf93ef79c3b249650d08c998e13d7ad /indra/newview | |
parent | d4c0c81c725c749d734935dbb7fa3af05bf8e02c (diff) |
fix for STORM-1053: crash at LLTextureCache::writeToCache
Diffstat (limited to 'indra/newview')
-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() ; |