Issue metadata
Sign in to add a comment
|
Chrome crashes on copy URL
Reported by
slane...@gmail.com,
Nov 12
|
||||||||||||||||||
Issue descriptionUserAgent: Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/70.0.3538.77 Safari/537.36 Steps to reproduce the problem: 1. https://plans.computershare.com.hk 2. Enter "Baidu", select and hit GO 3. At login screen, copy the URL What is the expected behavior? URL is copied to clipboard What went wrong? entire Chrome chrashes... all tabs and processes. Crashed report ID: How much crashed? Just one tab Is it a problem with a plugin? N/A Did this work before? Yes Same instance on Windows 7 Chrome version: 70.0.3538.77 Channel: stable OS Version: 10.0 Flash Version: No chrome crash logged from chrome://crashes Windows version : 10.0.15063 Client_Id: 7176028888442461128 Windows Event log error Faulting application name: chrome.exe, version: 70.0.3538.77, time stamp: 0x5bceaad0 Faulting module name: MSVCR100.dll, version: 10.0.40219.1, time stamp: 0x4d5f034a Exception code: 0xc0000417 Fault offset: 0x0000000000070468 Faulting process id: 0x5710 Faulting application start time: 0x01d47a16823292c4 Faulting application path: C:\Program Files (x86)\Google\Chrome\Application\chrome.exe Faulting module path: C:\WINDOWS\SYSTEM32\MSVCR100.dll Report Id: 9469bc4c-f5be-4a00-9e91-8dd8b6ce95ea Faulting package full name: Faulting package-relative application ID:
,
Nov 12
,
Nov 13
Unable to reproduce the issue on Windows 10 using chrome reported version-70.0.3538.77,latest stable-70.0.3538.102 & latest canary-72.0.3608.0 as per steps mentioned in C#0. No crash observed after step 3.Please check the issue on latest chrome versions & let us know your observations on the same. Find the attached screencast for reference.
,
Nov 13
[Stability Sheriff] I wasn't able to repro this on Windows 10, Chrome 72.0.3608.4 (64-bit). Some quick web searching suggests that other applications can get exclusive access to the clipboard through Win32 APIs and cause problems like this. I recommend looking at other software on your system and seeing if disabling/uninstalling it makes the crash go away.
,
Nov 25
I've been able to reproduce when building Chromium from source. There is an access violation down in the bowels of the clipboard libraries which is not being handled.
It fails calling SetClipboardData.
(from clipboard_win.cc, lines 907-913)
void ClipboardWin::WriteToClipboard(unsigned int format, HANDLE handle) {
DCHECK(clipboard_owner_->hwnd() != NULL);
if (handle && !::SetClipboardData(format, handle)) {
DCHECK(ERROR_CLIPBOARD_NOT_OPEN != GetLastError());
FreeData(format, handle);
}
}
(from the Debug console window in VC2017)
Exception thrown at 0x00007FFCB53C56B8 in chrome.exe: Microsoft C++ exception: IPCException at memory location 0x000000AB8E5F94D0.
Exception thrown at 0x00007FFCB53C56B8 in chrome.exe: Microsoft C++ exception: vontu_dlp::DLPException at memory location 0x000000AB8E5F9670.
Exception thrown at 0x00007FFCB8AFAB5D (ntdll.dll) in chrome.exe: 0xC0000005: Access violation writing location 0x00000000C00000C8.
Going up the call stack, all the local variables look okay. The immediate caller is ClipboardWin::WriteText and the text variable contains the information I copied from the URL.
Are you able to assist, I've got no idea where to start looking for the culprit?
,
Nov 25
Thank you for providing more feedback. Adding the requester to the cc list. For more details visit https://www.chromium.org/issue-tracking/autotriage - Your friendly Sheriffbot
,
Nov 28
Tested the issue on windows 10 using chrome#70.0.3538.110. No crash is seen on copying the url at login screen. @Slaneyrw: Could you please check by updating chrome to latest stable #70.0.3538.110. Is this crash is consistently reproducible? Thanks!
,
Nov 28
Might be helpful to find where the regression occurred via the bisect script: https://www.chromium.org/developers/bisect-builds-py |
|||||||||||||||||||
►
Sign in to add a comment |
|||||||||||||||||||
Comment 1 by slane...@gmail.com
, Nov 1239.7 KB
39.7 KB View Download