Bug 788639 - crash in GetPrintCanvasElementsInFrame @ mozilla::layout::FrameChildListIterator::FrameChildListIterator, r=smaug

This commit is contained in:
bdahl@mozilla.com 2012-09-05 12:02:27 -07:00
Родитель 9015e11bc7
Коммит d060963e00
1 изменённых файлов: 3 добавлений и 0 удалений

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

@ -496,6 +496,9 @@ nsSimplePageSequenceFrame::StartPrint(nsPresContext* aPresContext,
void
GetPrintCanvasElementsInFrame(nsIFrame* aFrame, nsTArray<nsRefPtr<nsHTMLCanvasElement> >* aArr)
{
if (!aFrame) {
return;
}
for (nsIFrame::ChildListIterator childLists(aFrame);
!childLists.IsDone(); childLists.Next()) {