mirror of
https://github.com/mozilla/gecko-dev.git
synced 2025-04-03 04:52:54 +00:00
Fix for bug 36736. We need to create and ininiatize mRowGroupInfo before using it else we crash. R=hyatt
This commit is contained in:
parent
7020903b71
commit
ae83b7156a
@ -1793,6 +1793,18 @@ nsTreeRowGroupFrame::IndexOfRow(nsIPresContext* aPresContext,
|
||||
PRBool
|
||||
nsTreeRowGroupFrame::IsValidRow(PRInt32 aRowIndex)
|
||||
{
|
||||
if (!mRowGroupInfo) {
|
||||
mRowGroupInfo = new nsTreeRowGroupInfo();
|
||||
}
|
||||
|
||||
PRInt32 count = mRowGroupInfo->mRowCount;
|
||||
if (count == -1) {
|
||||
count = 0;
|
||||
mRowGroupInfo->Clear();
|
||||
ComputeTotalRowCount(count, mContent);
|
||||
mRowGroupInfo->mRowCount = count;
|
||||
}
|
||||
|
||||
if (aRowIndex >= 0 && aRowIndex < mRowGroupInfo->mRowCount)
|
||||
return PR_TRUE;
|
||||
return PR_FALSE;
|
||||
|
Loading…
x
Reference in New Issue
Block a user