diff options
| author | Mnikolenko ProductEngine <mnikolenko@productengine.com> | 2015-03-31 12:51:07 +0300 | 
|---|---|---|
| committer | Mnikolenko ProductEngine <mnikolenko@productengine.com> | 2015-03-31 12:51:07 +0300 | 
| commit | 65e6cc6704bcd19a471f06fb6ab7621f2044dfa4 (patch) | |
| tree | 1aaf3097e351130b48140258bed81703124e82a6 /indra/newview | |
| parent | 3be738dc6cd46bc7666403178f1ae61a26c67f83 (diff) | |
MAINT-5039 FIXED Viewer crashes at logout if wearing clothing textured with a local texture
Diffstat (limited to 'indra/newview')
| -rwxr-xr-x | indra/newview/lllocalbitmaps.cpp | 2 | 
1 files changed, 1 insertions, 1 deletions
| diff --git a/indra/newview/lllocalbitmaps.cpp b/indra/newview/lllocalbitmaps.cpp index 619140e922..2550c10c89 100755 --- a/indra/newview/lllocalbitmaps.cpp +++ b/indra/newview/lllocalbitmaps.cpp @@ -129,7 +129,7 @@ LLLocalBitmap::LLLocalBitmap(std::string filename)  LLLocalBitmap::~LLLocalBitmap()  {  	// replace IDs with defaults, if set to do so. -	if(LL_LOCAL_REPLACE_ON_DEL && mValid) // fix for STORM-1837 +	if(LL_LOCAL_REPLACE_ON_DEL && mValid && gAgentAvatarp) // fix for STORM-1837  	{  		replaceIDs(mWorldID, IMG_DEFAULT);  		LLLocalBitmapMgr::doRebake(); | 
