mshtml: Better stub for IHTMLElement::setAttribute with NULL nselem.

This commit is contained in:
Jacek Caban 2008-06-18 17:08:14 -05:00 committed by Alexandre Julliard
parent 6305be26b3
commit 591bab3726
1 changed files with 2 additions and 1 deletions

View File

@ -194,7 +194,8 @@ static HRESULT WINAPI HTMLElement_getAttribute(IHTMLElement *iface, BSTR strAttr
if(!This->nselem) {
FIXME("NULL nselem\n");
return E_NOTIMPL;
V_VT(AttributeValue) = VT_NULL;
return S_OK;
}
V_VT(AttributeValue) = VT_NULL;