mirror of
https://github.com/electron/electron.git
synced 2026-04-10 03:01:51 -04:00
fix: render process crash handling (#34428)
* fix: crash when renderer process is reused Could occur when a renderer crashes and the same-origin URL is loaded again which leads to reusing the renderer process. * test: renderer process crash recovery * fix: handle case which leads to render frame DCHECK * fix: lint
This commit is contained in:
@@ -451,6 +451,9 @@ void ElectronBrowserClient::RenderProcessWillLaunch(
|
||||
new extensions::MessagingAPIMessageFilter(process_id, browser_context));
|
||||
#endif
|
||||
|
||||
// Remove in case the host is reused after a crash, otherwise noop.
|
||||
host->RemoveObserver(this);
|
||||
|
||||
// ensure the ProcessPreferences is removed later
|
||||
host->AddObserver(this);
|
||||
}
|
||||
|
||||
Reference in New Issue
Block a user