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

This commit is contained in:
Ms2ger
2011-07-03 11:53:39 +02:00
parent d4af3cc706
commit 095d1a25fa

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;
}