Commit 7a74f5b5 authored by Jacek Caban's avatar Jacek Caban Committed by Alexandre Julliard

mshtml: Use stored nsdoc in get_compatMode.

parent e604ae3e
...@@ -215,7 +215,6 @@ static HRESULT WINAPI HTMLDocument5_get_onbeforedeactivate(IHTMLDocument5 *iface ...@@ -215,7 +215,6 @@ static HRESULT WINAPI HTMLDocument5_get_onbeforedeactivate(IHTMLDocument5 *iface
static HRESULT WINAPI HTMLDocument5_get_compatMode(IHTMLDocument5 *iface, BSTR *p) static HRESULT WINAPI HTMLDocument5_get_compatMode(IHTMLDocument5 *iface, BSTR *p)
{ {
HTMLDocument *This = HTMLDOC5_THIS(iface); HTMLDocument *This = HTMLDOC5_THIS(iface);
nsIDOMDocument *nsdoc;
nsIDOMNSHTMLDocument *nshtmldoc; nsIDOMNSHTMLDocument *nshtmldoc;
nsAString mode_str; nsAString mode_str;
const PRUnichar *mode; const PRUnichar *mode;
...@@ -223,12 +222,12 @@ static HRESULT WINAPI HTMLDocument5_get_compatMode(IHTMLDocument5 *iface, BSTR * ...@@ -223,12 +222,12 @@ static HRESULT WINAPI HTMLDocument5_get_compatMode(IHTMLDocument5 *iface, BSTR *
TRACE("(%p)->(%p)\n", This, p); TRACE("(%p)->(%p)\n", This, p);
nsres = nsIWebNavigation_GetDocument(This->nscontainer->navigation, &nsdoc); if(!This->nsdoc) {
if(NS_FAILED(nsres)) WARN("NULL nsdoc\n");
ERR("GetDocument failed: %08x\n", nsres); return E_UNEXPECTED;
}
nsres = nsIDOMDocument_QueryInterface(nsdoc, &IID_nsIDOMNSHTMLDocument, (void**)&nshtmldoc); nsres = nsIDOMHTMLDocument_QueryInterface(This->nsdoc, &IID_nsIDOMNSHTMLDocument, (void**)&nshtmldoc);
nsIDOMDocument_Release(nsdoc);
if(NS_FAILED(nsres)) { if(NS_FAILED(nsres)) {
ERR("Could not get nsIDOMNSHTMLDocument: %08x\n", nsres); ERR("Could not get nsIDOMNSHTMLDocument: %08x\n", nsres);
return S_OK; return S_OK;
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment