[5/8] webservices: Ignore unimplemented struct options in the writer.

Hans Leidekker hans at codeweavers.com
Thu Aug 25 13:02:47 CDT 2016


Signed-off-by: Hans Leidekker <hans at codeweavers.com>
---
 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++)
     {
-- 
2.1.4




More information about the wine-patches mailing list