зеркало из https://github.com/mozilla/gecko-dev.git
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:
Родитель
8b9374cca7
Коммит
d807acf06e
|
@ -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)
|
||||
{ }
|
||||
|
|
Загрузка…
Ссылка в новой задаче