fix crash when we can't get a content node when counting children. (bug 210506)

This commit is contained in:
pinkerton%netscape.com 2003-06-10 21:43:57 +00:00
Родитель a931d6f5a6
Коммит df061f5e69
1 изменённых файлов: 3 добавлений и 2 удалений

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

@ -569,8 +569,9 @@ const int kBookmarksRootItemTag = -2;
else
content = [item contentNode];
PRInt32 childCount;
content->ChildCount(childCount);
PRInt32 childCount = 0;
if ( content )
content->ChildCount(childCount);
return childCount;
}