зеркало из https://github.com/mozilla/pjs.git
fix crash when we can't get a content node when counting children. (bug 210506)
This commit is contained in:
Родитель
a931d6f5a6
Коммит
df061f5e69
|
@ -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;
|
||||
}
|
||||
|
|
Загрузка…
Ссылка в новой задаче