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:
Shyotl
2011-05-04 19:54:03 -05:00
parent 03c98452be
commit 8cc6092a1c
8 changed files with 120 additions and 14 deletions

View File

@@ -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";
}