Don't use uninitialized variables. Bug 414076 followup, patch by Ronny Perinke

<ronny.perinke@gmx.de>, r+sr=bzbarsky
This commit is contained in:
bzbarsky%mit.edu 2008-03-19 23:23:59 +00:00
Родитель cdb03c7b11
Коммит dec354dc84
1 изменённых файлов: 3 добавлений и 3 удалений

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

@ -1006,8 +1006,6 @@ nsContentIterator::PositionAt(nsIContent* aCurNode)
if (firstNode && lastNode)
{
PRUint32 numChildren;
if (mPre)
{
firstNode = ContentToParentOffset(mFirst, &firstOffset);
@ -1022,7 +1020,9 @@ nsContentIterator::PositionAt(nsIContent* aCurNode)
}
else
{
if (firstNode->GetChildCount())
PRUint32 numChildren = firstNode->GetChildCount();
if (numChildren)
firstOffset = numChildren;
else
firstNode = ContentToParentOffset(mFirst, &firstOffset);