diff options
| author | Tofu Linden <tofu.linden@lindenlab.com> | 2010-01-27 16:31:41 -0800 | 
|---|---|---|
| committer | Tofu Linden <tofu.linden@lindenlab.com> | 2010-01-27 16:31:41 -0800 | 
| commit | 0ea467ad06acc8e90f46cf9b97d1509e287bbe5d (patch) | |
| tree | 6e4fec09ecc28b050af4f200d50c8429cb49a534 | |
| parent | 344eaeb39bc8fa059960d44b0b0853d92530c411 (diff) | |
CID-375
Checker: UNINIT_CTOR
Function: LLViewerFetchedTexture::LLViewerFetchedTexture(const LLImageRaw *, int)
File: /indra/newview/llviewertexture.cpp
| -rw-r--r-- | indra/newview/llviewertexture.cpp | 3 | 
1 files changed, 3 insertions, 0 deletions
diff --git a/indra/newview/llviewertexture.cpp b/indra/newview/llviewertexture.cpp index b80dc7d902..0ad269392d 100644 --- a/indra/newview/llviewertexture.cpp +++ b/indra/newview/llviewertexture.cpp @@ -1029,6 +1029,8 @@ void LLViewerFetchedTexture::init(bool firstinit)  	// does not contain this image.  	mIsMissingAsset = FALSE; +	mLoadedCallbackDesiredDiscardLevel = 0; +  	mNeedsCreateTexture = FALSE;  	mIsRawImageValid = FALSE; @@ -1041,6 +1043,7 @@ void LLViewerFetchedTexture::init(bool firstinit)  	mFetchPriority = 0;  	mDownloadProgress = 0.f;  	mFetchDeltaTime = 999999.f; +	mRequestDeltaTime = 0.f;  	mForSculpt = FALSE ;  	mIsFetched = FALSE ;  | 
