Follow up to bug 1035394 - Fix bustage from initializing fields in the wrong order on a CLOSED TREE, r=bustage

This commit is contained in:
Michael Wu 2014-08-11 17:53:06 -04:00
Родитель 8b9374cca7
Коммит d807acf06e
1 изменённых файлов: 2 добавлений и 2 удалений

Просмотреть файл

@ -376,9 +376,9 @@ public:
Entry(KeyTypePointer aKey)
: mURI(aKey->mURI),
mPrincipal(aKey->mPrincipal),
mFontEntry(aKey->mFontEntry),
mCRC32(aKey->mCRC32),
mLength(aKey->mLength),
mFontEntry(aKey->mFontEntry),
mPrivate(aKey->mPrivate),
mPersistence(aKey->mPersistence)
{ }
@ -386,9 +386,9 @@ public:
Entry(const Entry& aOther)
: mURI(aOther.mURI),
mPrincipal(aOther.mPrincipal),
mFontEntry(aOther.mFontEntry),
mCRC32(aOther.mCRC32),
mLength(aOther.mLength),
mFontEntry(aOther.mFontEntry),
mPrivate(aOther.mPrivate),
mPersistence(aOther.mPersistence)
{ }