Bug 474369 - get rid of nsVoidArray, fix Mac unittest bustage

This commit is contained in:
Arpad Borsos 2009-03-20 14:33:02 +01:00
Родитель 2d5fb14a99
Коммит 79e27353c8
1 изменённых файлов: 2 добавлений и 2 удалений

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

@ -345,7 +345,7 @@ txBufferingHandler::startElement(nsIAtom* aPrefix,
txResultBuffer::~txResultBuffer()
{
for (PRUint32 i, len = mTransactions.Length(); i < len; ++i) {
for (PRUint32 i = 0, len = mTransactions.Length(); i < len; ++i) {
delete mTransactions[i];
}
}
@ -468,7 +468,7 @@ txResultBuffer::flushToHandler(txAXMLEventHandler** aHandler)
Holder data = { aHandler, NS_OK };
mStringValue.BeginReading(data.mIter);
for (PRUint32 i, len = mTransactions.Length(); i < len; ++i) {
for (PRUint32 i = 0, len = mTransactions.Length(); i < len; ++i) {
if (!flushTransaction(mTransactions[i], &data)) {
break;
}