[Bug 31399] Pegasus Mail is crashing

wine-bugs at winehq.org wine-bugs at winehq.org
Sat Oct 27 13:52:26 CDT 2012


http://bugs.winehq.org/show_bug.cgi?id=31399

--- Comment #6 from Jaroslav Fojtik <fojtik at penguin.cz> 2012-10-27 13:52:26 CDT ---
Something is totally wrong in "navigate_url".


static HRESULT WINAPI HTMLDocument_put_URL(IHTMLDocument2 *iface, BSTR v)
 {
     HTMLDocument *This = impl_from_IHTMLDocument2(iface);
+    TRACE("(%p)->(%s)\n", This, debugstr_w(v));

    return E_NOTIMPL;    // <<<<< when I add this line, Pegasus Mail starts
working.

+
+    if(!This->window) {
+        FIXME("No window available\n");
+        return E_FAIL;
+    }
+
+    return navigate_url(This->window, v, This->window->url);
 }

-- 
Configure bugmail: http://bugs.winehq.org/userprefs.cgi?tab=email
Do not reply to this email, post in Bugzilla using the
above URL to reply.
------- You are receiving this mail because: -------
You are watching all bug changes.



More information about the wine-bugs mailing list