fix: BrowserView crash when 'beforeunload' prevented#37205
Merged
codebytere merged 1 commit intomainfrom Feb 14, 2023
Merged
Conversation
3dac168 to
7bb7b43
Compare
5393b95 to
1a36853
Compare
1a36853 to
8bd3f01
Compare
BrowserView crash when 'beforeunload' prevented
zcbenz
approved these changes
Feb 14, 2023
deepak1556
approved these changes
Feb 14, 2023
|
Release Notes Persisted
|
This was referenced Feb 14, 2023
Contributor
|
I have automatically backported this PR to "22-x-y", please check out #37266 |
Contributor
|
I have automatically backported this PR to "23-x-y", please check out #37267 |
Contributor
|
I have automatically backported this PR to "24-x-y", please check out #37268 |
khalwa
pushed a commit
to solarwindscloud/electron
that referenced
this pull request
Feb 22, 2023
fix: crash when beforeunload prevented
3 tasks
4 tasks
gecko19
pushed a commit
to brightsign/electron
that referenced
this pull request
Feb 28, 2023
fix: crash when beforeunload prevented
gecko19
pushed a commit
to brightsign/electron
that referenced
this pull request
Mar 15, 2023
fix: crash when beforeunload prevented
gecko19
pushed a commit
to brightsign/electron
that referenced
this pull request
Mar 15, 2023
fix: crash when beforeunload prevented
Bistard
added a commit
to Bistard/nota
that referenced
this pull request
Nov 12, 2024
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
Add this suggestion to a batch that can be applied as a single commit.This suggestion is invalid because no changes were made to the code.Suggestions cannot be applied while the pull request is closed.Suggestions cannot be applied while viewing a subset of changes.Only one suggestion per line can be applied in a batch.Add this suggestion to a batch that can be applied as a single commit.Applying suggestions on deleted lines is not supported.You must change the existing code in this line in order to create a valid suggestion.Outdated suggestions cannot be applied.This suggestion has been applied or marked resolved.Suggestions cannot be applied from pending reviews.Suggestions cannot be applied on multi-line comments.Suggestions cannot be applied while the pull request is queued to merge.Suggestion cannot be applied right now. Please check back later.
Description of Change
Closes #37162.
Refs #35509 & #36230
When
Destroy()is called inWebContents::CloseContentsinstead ofBrowserWindow::OnCloseContents, this leads to a crash whenbeforeunloadis prevented in the renderer process instead and there is at least one BrowserView present. This is owing to theWebContentsbeing nullptr in the BrowserView when it is called byNativeWindow::NonClientHitTestas a result of clicking the close button. This is fixed by moving the destroy call back toOnCloseContentsso that BrowserViews are reset properly prior.Tested with https://gist.github.com/YauheniBH-EF/190ea8ff42c09a15763705ed4647b02e
Checklist
npm testpassesRelease Notes
Notes: Fixed a crash when
BrowserViews are present and a user attempts to preventbeforeunloadin the renderer process.