Bug 125689 Mozinvaders crashes Mozilla! [@ nsGrid::FindRowsAndColumns]

r=varga sr=kin
<grid></grid> with no rows or collumns
This commit is contained in:
timeless%mac.com 2002-06-20 00:14:29 +00:00
Родитель a29b57a342
Коммит 8a4270d80b
1 изменённых файлов: 3 добавлений и 1 удалений

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

@ -279,7 +279,9 @@ nsGrid::FindRowsAndColumns(nsIBox** aRows, nsIBox** aColumns)
// find the boxes that contain our rows and columns
nsIBox* child = nsnull;
mBox->GetChildBox(&child);
// if we have <grid></grid> then mBox will be null (bug 125689)
if (mBox)
mBox->GetChildBox(&child);
while(child)
{