mirror of
https://bitbucket.org/chromiumembedded/cef
synced 2025-03-30 11:50:10 +02:00
Merge revision 1045 changes:
- Windows: Avoid assertion when entering zero-length text in the default JavaScript prompt dialog (issue #862). git-svn-id: https://chromiumembedded.googlecode.com/svn/branches/1180@1048 5089003a-bbd8-11dd-ad1f-f1f9622dbc98
This commit is contained in:
parent
5124bd8f66
commit
fa4ee51439
@ -61,8 +61,10 @@ INT_PTR CALLBACK CefJavaScriptDialog::DialogProc(HWND dialog,
|
||||
if (owner->message_type_ == content::JAVASCRIPT_MESSAGE_TYPE_PROMPT) {
|
||||
size_t length =
|
||||
GetWindowTextLength(GetDlgItem(dialog, IDC_PROMPTEDIT)) + 1;
|
||||
GetDlgItemText(dialog, IDC_PROMPTEDIT,
|
||||
WriteInto(&user_input, length), length);
|
||||
if (length > 1) {
|
||||
GetDlgItemText(dialog, IDC_PROMPTEDIT,
|
||||
WriteInto(&user_input, length), length);
|
||||
}
|
||||
}
|
||||
break;
|
||||
case IDCANCEL:
|
||||
|
Loading…
x
Reference in New Issue
Block a user