| Index: content/browser/frame_host/render_frame_host_manager.cc
|
| diff --git a/content/browser/frame_host/render_frame_host_manager.cc b/content/browser/frame_host/render_frame_host_manager.cc
|
| index a68a49f89f983b31492fbd793ce679094ce48a6b..e4b21cee234a6960ed9d5a9cdb851653720bdaca 100644
|
| --- a/content/browser/frame_host/render_frame_host_manager.cc
|
| +++ b/content/browser/frame_host/render_frame_host_manager.cc
|
| @@ -482,7 +482,10 @@ void RenderFrameHostManager::OnCrossSiteResponse(
|
| // transfered to a RenderFrameHost. In the other cases, it should be cleared.
|
| // If the NavigationHandle wasn't claimed, this will lead to the cancelation
|
| // of the request in the network stack.
|
| - transfer_navigation_handle_.reset();
|
| + if (transfer_navigation_handle_) {
|
| + transfer_navigation_handle_->set_is_transferring(false);
|
| + transfer_navigation_handle_.reset();
|
| + }
|
|
|
| // If the navigation in the new renderer did not start, inform the
|
| // FrameTreeNode that it stopped loading.
|
|
|