From 054f95e6599f93adf7bc45b65e74f2e24b5b96c8 Mon Sep 17 00:00:00 2001 From: Nikolay Sivov Date: Fri, 3 May 2019 14:53:32 +0300 Subject: [PATCH] wmvcore: Return success from OpenStream(). Signed-off-by: Nikolay Sivov Signed-off-by: Alexandre Julliard --- dlls/wmvcore/reader.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/dlls/wmvcore/reader.c b/dlls/wmvcore/reader.c index d35f29d66e8..6041c567e95 100644 --- a/dlls/wmvcore/reader.c +++ b/dlls/wmvcore/reader.c @@ -2222,7 +2222,7 @@ static HRESULT WINAPI WMSyncReader_OpenStream(IWMSyncReader *iface, IStream *str { WMSyncReader *This = impl_from_IWMSyncReader(iface); FIXME("(%p)->(%p): stub!\n", This, stream); - return E_NOTIMPL; + return S_OK; } static HRESULT WINAPI WMSyncReader_SetOutputProps(IWMSyncReader *iface, DWORD output_num, IWMOutputMediaProps *output)