[Webkit-unassigned] [Bug 16795] WebKitGtk crashes when there is no focused Frame
bugzilla-daemon at webkit.org
bugzilla-daemon at webkit.org
Fri Jan 25 09:34:49 PST 2008
http://bugs.webkit.org/show_bug.cgi?id=16795
------- Comment #7 from alp at atoker.com 2008-01-25 09:34 PDT -------
The first step in fixing this issue consistently is understanding and
validating what core() does in webkitprivate.cpp:
WebCore::Page* core(WebKitWebView* webView)
{
if (!webView)
return 0;
WebKitWebViewPrivate* webViewData = WEBKIT_WEB_VIEW_GET_PRIVATE(webView);
return webViewData ? webViewData->corePage : 0;
}
So, if webView is NULL, the return is NULL. No warning is given.
If webView is not NULL, the return can either be the corePage or NULL.
This is pretty much equivalent to what Win does:
Page* core(IWebView* iWebView)
{
Page* page = 0;
COMPtr<WebView> webView;
if (SUCCEEDED(iWebView->QueryInterface(&webView)) && webView)
page = webView->page();
return page;
}
We need to examine the WebKit API layer code now keeping these rules in mind..
--
Configure bugmail: http://bugs.webkit.org/userprefs.cgi?tab=email
------- You are receiving this mail because: -------
You are the assignee for the bug, or are watching the assignee.
More information about the webkit-unassigned
mailing list