Module: wine Branch: master Commit: ff0ed20c2ff81013a6560ddf5636d638f15cb632 URL: http://source.winehq.org/git/wine.git/?a=commit;h=ff0ed20c2ff81013a6560ddf56...
Author: Nikolay Sivov nsivov@codeweavers.com Date: Tue Apr 8 07:42:43 2014 +0400
msxml3: IXSLProcessor_put_output() is not a stub.
---
dlls/msxml3/stylesheet.c | 5 ++++- 1 file changed, 4 insertions(+), 1 deletion(-)
diff --git a/dlls/msxml3/stylesheet.c b/dlls/msxml3/stylesheet.c index e5761de..b2816ee 100644 --- a/dlls/msxml3/stylesheet.c +++ b/dlls/msxml3/stylesheet.c @@ -463,7 +463,7 @@ static HRESULT WINAPI xslprocessor_put_output( IStream *stream; HRESULT hr;
- FIXME("(%p)->(%s): semi-stub\n", This, debugstr_variant(&output)); + TRACE("(%p)->(%s)\n", This, debugstr_variant(&output));
switch (V_VT(&output)) { @@ -473,8 +473,11 @@ static HRESULT WINAPI xslprocessor_put_output( break; case VT_UNKNOWN: hr = IUnknown_QueryInterface(V_UNKNOWN(&output), &IID_IStream, (void**)&stream); + if (FAILED(hr)) + WARN("failed to get IStream from output, 0x%08x\n", hr); break; default: + FIXME("output type %d not handed\n", V_VT(&output)); hr = E_FAIL; }