No bug - Fix assertion in nsCellMapColumnIterator::GetNextFrame; r=bz

This commit is contained in:
Ms2ger 2011-07-03 11:53:39 +02:00
parent 0ffaf34b2d
commit 01867114b9

View File

@ -2884,8 +2884,8 @@ nsCellMapColumnIterator::GetNextFrame(PRInt32* aRow, PRInt32* aColSpan)
++mFoundCells;
NS_ASSERTION(cellData = mMap->GetDataAt(*aRow, mCol),
"Giving caller bogus row?");
NS_ABORT_IF_FALSE(cellData == mMap->GetDataAt(*aRow, mCol),
"Giving caller bogus row?");
return cellFrame;
}