Nikolay Sivov : wmvcore: Return success from OpenStream().

Alexandre Julliard julliard at winehq.org
Fri May 3 15:46:17 CDT 2019


Module: wine
Branch: master
Commit: 054f95e6599f93adf7bc45b65e74f2e24b5b96c8
URL:    https://source.winehq.org/git/wine.git/?a=commit;h=054f95e6599f93adf7bc45b65e74f2e24b5b96c8

Author: Nikolay Sivov <nsivov at codeweavers.com>
Date:   Fri May  3 14:53:32 2019 +0300

wmvcore: Return success from OpenStream().

Signed-off-by: Nikolay Sivov <nsivov at codeweavers.com>
Signed-off-by: Alexandre Julliard <julliard at winehq.org>

---

 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 d35f29d..6041c56 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)




More information about the wine-cvs mailing list