Bug 1266868, part 3 - Avoid Maybe::ref() where not necessary. r=dholbert

This commit is contained in:
Jonathan Watt 2016-05-02 18:54:58 +01:00
Родитель aa8b43ad6e
Коммит 23c872cc11
1 изменённых файлов: 1 добавлений и 1 удалений

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

@ -2414,7 +2414,7 @@ StyleAnimationValue::AddWeighted(nsCSSProperty aProperty,
}
// We need a heap allocated object to adopt here:
auto heapResult = MakeUnique<nsCSSValuePair>(result.ref());
auto heapResult = MakeUnique<nsCSSValuePair>(*result);
aResultValue.SetAndAdoptCSSValuePairValue(heapResult.release(),
eUnit_CSSValuePair);
return true;