mshtml: Always initialize output in exec_fontname.

oldstable
Jacek Caban 2007-11-20 01:50:19 +01:00 committed by Alexandre Julliard
parent ebc89a02d3
commit 2702dfffbf
1 changed files with 3 additions and 1 deletions

View File

@ -586,6 +586,9 @@ static HRESULT exec_fontname(HTMLDocument *This, DWORD cmdexecopt, VARIANT *in,
DWORD len;
nsresult nsres;
V_VT(out) = VT_BSTR;
V_BSTR(out) = NULL;
nsparam = create_nscommand_params();
nsres = get_ns_command_state(This->nscontainer, NSCMD_FONTFACE, nsparam);
@ -600,7 +603,6 @@ static HRESULT exec_fontname(HTMLDocument *This, DWORD cmdexecopt, VARIANT *in,
MultiByteToWideChar(CP_ACP, 0, stra, -1, strw, -1);
nsfree(stra);
V_VT(out) = VT_BSTR;
V_BSTR(out) = SysAllocString(strw);
mshtml_free(strw);
}