Bug 853569 - Fix nsTArray::SetCapacity callers in nsXULContentSink to not look at the return value; r=bzbarsky

--HG--
extra : rebase_source : 1916e6aa6752fa72cd81f64084bcb525a9ca5155
This commit is contained in:
Ehsan Akhgari 2013-03-21 14:54:36 -04:00
Родитель e659f5d0d3
Коммит 335b4926a6
1 изменённых файлов: 1 добавлений и 2 удалений

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

@ -548,8 +548,7 @@ XULContentSinkImpl::HandleEndElement(const PRUnichar *aName)
int32_t count = children->Length();
if (count) {
if (!element->mChildren.SetCapacity(count))
return NS_ERROR_OUT_OF_MEMORY;
element->mChildren.SetCapacity(count);
for (int32_t i = 0; i < count; ++i)
element->mChildren.AppendElement(children->ElementAt(i));