зеркало из https://github.com/mozilla/gecko-dev.git
Null-check the right thing to fix topcrash. (Bug 752428) r=roc
This commit is contained in:
Родитель
1e1ac321b6
Коммит
7566853083
|
@ -308,9 +308,8 @@ MaybeReflowForInflationScreenWidthChange(nsPresContext *aPresContext)
|
|||
nsCOMPtr<nsIPresShell> shell;
|
||||
nsCOMPtr<nsIContentViewer> cv = do_QueryInterface(array[i]);
|
||||
cv->GetPresShell(getter_AddRefs(shell));
|
||||
nsFrameManager *fm = shell->FrameManager();
|
||||
if (fm) {
|
||||
nsIFrame *rootFrame = fm->GetRootFrame();
|
||||
if (shell) {
|
||||
nsIFrame *rootFrame = shell->GetRootFrame();
|
||||
if (rootFrame) {
|
||||
shell->FrameNeedsReflow(rootFrame, nsIPresShell::eResize,
|
||||
NS_FRAME_IS_DIRTY);
|
||||
|
|
Загрузка…
Ссылка в новой задаче