зеркало из https://github.com/mozilla/gecko-dev.git
Bug 1383128 - Avoid some useless AddRef()s when parsing class attributes; r=smaug
This commit is contained in:
Родитель
dca65c9e6a
Коммит
260134d833
|
@ -1303,7 +1303,7 @@ nsAttrValue::ParseAtomArray(const nsAString& aValue)
|
|||
|
||||
AtomArray* array = GetAtomArrayValue();
|
||||
|
||||
if (!array->AppendElement(classAtom)) {
|
||||
if (!array->AppendElement(Move(classAtom))) {
|
||||
Reset();
|
||||
return;
|
||||
}
|
||||
|
@ -1318,7 +1318,7 @@ nsAttrValue::ParseAtomArray(const nsAString& aValue)
|
|||
|
||||
classAtom = NS_AtomizeMainThread(Substring(start, iter));
|
||||
|
||||
if (!array->AppendElement(classAtom)) {
|
||||
if (!array->AppendElement(Move(classAtom))) {
|
||||
Reset();
|
||||
return;
|
||||
}
|
||||
|
|
Загрузка…
Ссылка в новой задаче