mshtml: Initialize output value before passing it to VariantCopy.

This commit is contained in:
Jacek Caban 2015-05-15 13:01:01 +02:00 committed by Alexandre Julliard
parent 6919c86601
commit 25dee9f5be
1 changed files with 1 additions and 0 deletions

View File

@ -482,6 +482,7 @@ static HRESULT WINAPI HTMLEventObj_get_returnValue(IHTMLEventObj *iface, VARIANT
TRACE("(%p)->(%p)\n", This, p);
V_VT(p) = VT_EMPTY;
return VariantCopy(p, &This->return_value);
}