Hans Leidekker : webservices: Ignore unimplemented struct options in the reader.

Alexandre Julliard julliard at winehq.org
Wed Aug 31 11:02:42 CDT 2016


Module: wine
Branch: master
Commit: b9d751d5420d4b03fc91c8f9089f32313642ce6f
URL:    http://source.winehq.org/git/wine.git/?a=commit;h=b9d751d5420d4b03fc91c8f9089f32313642ce6f

Author: Hans Leidekker <hans at codeweavers.com>
Date:   Wed Aug 31 14:35:31 2016 +0200

webservices: Ignore unimplemented struct options in the reader.

Signed-off-by: Hans Leidekker <hans at codeweavers.com>
Signed-off-by: Alexandre Julliard <julliard at winehq.org>

---

 dlls/webservices/reader.c | 7 +------
 1 file changed, 1 insertion(+), 6 deletions(-)

diff --git a/dlls/webservices/reader.c b/dlls/webservices/reader.c
index 1a51257..a05d98e 100644
--- a/dlls/webservices/reader.c
+++ b/dlls/webservices/reader.c
@@ -3821,12 +3821,7 @@ static HRESULT read_type_struct( struct reader *reader, WS_TYPE_MAPPING mapping,
     char *buf;
 
     if (!desc) return E_INVALIDARG;
-
-    if (desc->structOptions)
-    {
-        FIXME( "struct options %08x not supported\n", desc->structOptions );
-        return E_NOTIMPL;
-    }
+    if (desc->structOptions) FIXME( "struct options %08x not supported\n", desc->structOptions );
 
     switch (option)
     {




More information about the wine-cvs mailing list