diff options
Diffstat (limited to 'indra/newview')
| -rw-r--r-- | indra/newview/llwearable.cpp | 7 | 
1 files changed, 4 insertions, 3 deletions
diff --git a/indra/newview/llwearable.cpp b/indra/newview/llwearable.cpp index 84bb099d55..631f128ffa 100644 --- a/indra/newview/llwearable.cpp +++ b/indra/newview/llwearable.cpp @@ -407,9 +407,10 @@ BOOL LLWearable::importFile( LLFILE* file )  		{  			delete mSavedTEMap[te];  		} -		 -		mTEMap[te] = new LLLocalTextureObject(image, LLUUID(text_buffer)); -		mSavedTEMap[te] = new LLLocalTextureObject(image, LLUUID(text_buffer)); + +		LLUUID textureid(text_buffer); +		mTEMap[te] = new LLLocalTextureObject(image, textureid); +		mSavedTEMap[te] = new LLLocalTextureObject(image, textureid);  		createLayers(te);  	}  | 
