diff options
Diffstat (limited to 'indra')
| -rw-r--r-- | indra/llinventory/llinventory.cpp | 6 | 
1 files changed, 4 insertions, 2 deletions
diff --git a/indra/llinventory/llinventory.cpp b/indra/llinventory/llinventory.cpp index 6e54f9d78a..a80ae73dca 100644 --- a/indra/llinventory/llinventory.cpp +++ b/indra/llinventory/llinventory.cpp @@ -75,13 +75,15 @@ LLInventoryObject::LLInventoryObject(const LLUUID& uuid,  	mUUID(uuid),  	mParentUUID(parent_uuid),  	mType(type), -	mName(name) +	mName(name), +	mCreationDate(0)  {  	correctInventoryName(mName);  }  LLInventoryObject::LLInventoryObject() : -	mType(LLAssetType::AT_NONE) +	mType(LLAssetType::AT_NONE), +	mCreationDate(0)  {  }  | 
