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

Alexandre Julliard julliard at winehq.org
Fri Aug 26 10:18:11 CDT 2016


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

Author: Hans Leidekker <hans at codeweavers.com>
Date:   Thu Aug 25 20:02:47 2016 +0200

webservices: Ignore unimplemented struct options in the writer.

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

---

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

diff --git a/dlls/webservices/writer.c b/dlls/webservices/writer.c
index 1ee5f1a..89f9465 100644
--- a/dlls/webservices/writer.c
+++ b/dlls/webservices/writer.c
@@ -1652,11 +1652,7 @@ static HRESULT write_type_struct( struct writer *writer, WS_TYPE_MAPPING mapping
     HRESULT hr;
     const char *ptr;
 
-    if (desc->structOptions)
-    {
-        FIXME( "struct options 0x%x not supported\n", desc->structOptions );
-        return E_NOTIMPL;
-    }
+    if (desc->structOptions) FIXME( "struct options 0x%x not supported\n", desc->structOptions );
 
     for (i = 0; i < desc->fieldCount; i++)
     {




More information about the wine-cvs mailing list