A few variables were uninitialized.
Removed an unused variable. Phys controller that should be female-only... wasn't. Pre increment iterators when possible. protected->private upgrades.
This commit is contained in:
@@ -60,8 +60,12 @@ class LLPidLockFile
|
||||
{
|
||||
public:
|
||||
LLPidLockFile( ) :
|
||||
mSaving(FALSE), mWaiting(FALSE),
|
||||
mClean(TRUE), mPID(LLApp::getPid())
|
||||
mAutosave(false),
|
||||
mSaving(false),
|
||||
mWaiting(false),
|
||||
mPID(LLApp::getPid()),
|
||||
mNameTable(NULL),
|
||||
mClean(true)
|
||||
{
|
||||
mLockName = gDirUtilp->getTempDir() + "/savelock";
|
||||
}
|
||||
|
||||
@@ -80,16 +80,14 @@ public:
|
||||
static const S32 READ_WRITE;
|
||||
static const S32 APPEND;
|
||||
|
||||
protected:
|
||||
LLAssetType::EType mFileType;
|
||||
|
||||
LLUUID mFileID;
|
||||
|
||||
protected:
|
||||
S32 mPosition;
|
||||
S32 mMode;
|
||||
LLVFS *mVFS;
|
||||
F32 mPriority;
|
||||
BOOL mOnReadQueue;
|
||||
|
||||
S32 mBytesRead;
|
||||
LLVFSThread::handle_t mHandle;
|
||||
|
||||
Reference in New Issue
Block a user