diff options
| author | Tofu Linden <tofu.linden@lindenlab.com> | 2010-02-03 20:54:16 +0000 | 
|---|---|---|
| committer | Tofu Linden <tofu.linden@lindenlab.com> | 2010-02-03 20:54:16 +0000 | 
| commit | d182b4f19ab14e07b5d43ad605545fb04686e870 (patch) | |
| tree | c2bd8302f00800ec0a9369b545276a4f8042cc18 | |
| parent | f1606535e121aff163b5499ab487dcfb04d524b7 (diff) | |
CID-261
Checker: UNINIT_CTOR
Function: LLImageJ2COJ::LLImageJ2COJ()
File: /indra/llimagej2coj/llimagej2coj.cpp
| -rw-r--r-- | indra/llimagej2coj/llimagej2coj.cpp | 3 | ||||
| -rw-r--r-- | indra/llimagej2coj/llimagej2coj.h | 3 | 
2 files changed, 2 insertions, 4 deletions
| diff --git a/indra/llimagej2coj/llimagej2coj.cpp b/indra/llimagej2coj/llimagej2coj.cpp index e71429b18d..3af31da083 100644 --- a/indra/llimagej2coj/llimagej2coj.cpp +++ b/indra/llimagej2coj/llimagej2coj.cpp @@ -97,7 +97,8 @@ void info_callback(const char* msg, void*)  } -LLImageJ2COJ::LLImageJ2COJ() : LLImageJ2CImpl() +LLImageJ2COJ::LLImageJ2COJ() +	: LLImageJ2CImpl()  {  } diff --git a/indra/llimagej2coj/llimagej2coj.h b/indra/llimagej2coj/llimagej2coj.h index 73cb074f1f..8255d5225f 100644 --- a/indra/llimagej2coj/llimagej2coj.h +++ b/indra/llimagej2coj/llimagej2coj.h @@ -51,9 +51,6 @@ protected:  		// Divide a by b to the power of 2 and round upwards.  		return (a + (1 << b) - 1) >> b;  	} - -	// Temporary variables for in-progress decodes... -	LLImageRaw *mRawImagep;  };  #endif | 
