msxml3/tests: Fix BSTR leak.

This commit is contained in:
Michael Karcher 2008-11-29 10:51:32 +01:00 committed by Alexandre Julliard
parent e55da04e77
commit aefe3456fb

View File

@ -3856,6 +3856,7 @@ static void test_NodeTypeValue(void)
hr = IXMLDOMNode_get_nodeTypedValue(pNode, &v);
ok(hr == S_OK, "ret %08x\n", hr );
ok(!lstrcmpW( V_BSTR(&v), _bstr_("Wine") ), "incorrect value\n");
VariantClear( &v );
IXMLDOMNode_Release(pNode);
}