Module: wine Branch: master Commit: 06fb21c58ab29fc988c3ab9fe445526e8774a915 URL: http://source.winehq.org/git/wine.git/?a=commit;h=06fb21c58ab29fc988c3ab9fe4...
Author: Hans Leidekker hans@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@codeweavers.com Signed-off-by: Alexandre Julliard julliard@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++) {