Skip to content

Commit 63a4db7

Browse files
authored
Merge pull request #1378 from filipe-norte-red/fix-crash-in-non-composite-gl-mode
Fix crash on shutdown in non-composited GL mode
2 parents ef5a746 + 62ad0ee commit 63a4db7

1 file changed

Lines changed: 2 additions & 1 deletion

File tree

Source/WebKit/WebProcess/WebPage/WebPage.cpp

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1619,10 +1619,11 @@ void WebPage::close()
16191619

16201620
m_printContext = nullptr;
16211621
m_mainFrame->coreFrame()->loader().detachFromParent();
1622-
m_drawingArea = nullptr;
16231622

16241623
DeferredPageDestructor::createDeferredPageDestructor(WTFMove(m_page), this);
16251624

1625+
m_drawingArea = nullptr;
1626+
16261627
bool isRunningModal = m_isRunningModal;
16271628
m_isRunningModal = false;
16281629

0 commit comments

Comments
 (0)