diff options
| author | Tofu Linden <tofu.linden@lindenlab.com> | 2010-01-27 16:57:10 -0800 | 
|---|---|---|
| committer | Tofu Linden <tofu.linden@lindenlab.com> | 2010-01-27 16:57:10 -0800 | 
| commit | d9661c3d2a26dd4379a6f57dc8227ee2e73f8ec6 (patch) | |
| tree | 6dfdafbaf20b2e4d0f47f94c408ce5568a9d82a3 | |
| parent | ce436d20f09269dd3715b29a1ed0addb132b35cb (diff) | |
CID-358
Checker: UNINIT_CTOR
Function: LLTextureCache::Entry::Entry()
File: /indra/newview/lltexturecache.h
| -rw-r--r-- | indra/newview/lltexturecache.h | 7 | 
1 files changed, 6 insertions, 1 deletions
| diff --git a/indra/newview/lltexturecache.h b/indra/newview/lltexturecache.h index 4203cbbc43..64ec881fc3 100644 --- a/indra/newview/lltexturecache.h +++ b/indra/newview/lltexturecache.h @@ -59,7 +59,12 @@ private:  	};  	struct Entry  	{ -		Entry() {} +        	Entry() : +		        mBodySize(0), +			mImageSize(0), +			mTime(0) +		{ +		}  		Entry(const LLUUID& id, S32 imagesize, S32 bodysize, U32 time) :  			mID(id), mImageSize(imagesize), mBodySize(bodysize), mTime(time) {}  		void init(const LLUUID& id, U32 time) { mID = id, mImageSize = 0; mBodySize = 0; mTime = time; } | 
