mirror of
git://source.winehq.org/git/wine.git
synced 2024-10-31 11:26:10 +00:00
mshtml: Properly handle out of memory in IHTMLElement::get_outerHTML.
This commit is contained in:
parent
90f7c8f848
commit
f09e4ce269
1 changed files with 1 additions and 1 deletions
|
@ -1170,7 +1170,7 @@ static HRESULT WINAPI HTMLElement_get_outerHTML(IHTMLElement *iface, BSTR *p)
|
|||
nsAString_Finish(&html_str);
|
||||
|
||||
TRACE("ret %s\n", debugstr_w(*p));
|
||||
return S_OK;
|
||||
return hres;
|
||||
}
|
||||
|
||||
static HRESULT WINAPI HTMLElement_put_outerText(IHTMLElement *iface, BSTR v)
|
||||
|
|
Loading…
Reference in a new issue