Updates:
Status: Assigned
Owner: [email protected]
Cc: [email protected] [email protected] [email protected]
[email protected]
Labels: -Pri-3 -Mstone-5 Pri-1 Mstone-4 Crash
Comment #3 on issue 22829 by [email protected]: Crash -
views::NativeTextfieldWin::NativeTextfieldWin(views::Textfield *)
http://code.google.com/p/chromium/issues/detail?id=22829
#7 browser crash in beta release 4.0.223.16.
Crash on the last line at the end of NativeTextfieldWin::NativeTextfieldWin.
NativeTextfieldWin::NativeTextfieldWin(Textfield* textfield)
...
ScopedComPtr<IRichEditOle, &IID_IRichEditOle> ole_interface;
ole_interface.Attach(GetOleInterface());
text_object_model_.QueryFrom(ole_interface);
}
jhawkins, your change
http://src.chromium.org/viewvc/chrome?view=rev&revision=25879
has changed the code from
text_object_model_ = ole_interface;
to
text_object_model_.QueryFrom(ole_interface);
I suspect GetOleInterface could return NULL so
ole_interface->QueryInterface crashes
within QueryFrom. It worths to verify whether the existing code handles
text_object_model_ being NULL.
--
You received this message because you are listed in the owner
or CC fields of this issue, or because you starred this issue.
You may adjust your issue notification preferences at:
http://code.google.com/hosting/settings
--~--~---------~--~----~------------~-------~--~----~
Automated mail from issue updates at http://crbug.com/
Subscription options: http://groups.google.com/group/chromium-bugs
-~----------~----~----~----~------~----~------~--~---