[PATCH 4/6] webservices: Simplify write_dict_string.

Hans Leidekker hans at codeweavers.com
Wed Jan 24 07:30:00 CST 2018


Signed-off-by: Hans Leidekker <hans at codeweavers.com>
---
 dlls/webservices/writer.c | 4 +---
 1 file changed, 1 insertion(+), 3 deletions(-)

diff --git a/dlls/webservices/writer.c b/dlls/webservices/writer.c
index b7dab3a930..75cf7b4e64 100644
--- a/dlls/webservices/writer.c
+++ b/dlls/webservices/writer.c
@@ -648,10 +648,8 @@ static HRESULT write_string( struct writer *writer, const BYTE *bytes, ULONG len
 
 static HRESULT write_dict_string( struct writer *writer, ULONG id )
 {
-    HRESULT hr;
     if (id > 0x7fffffff) return E_INVALIDARG;
-    if ((hr = write_int31( writer, id )) != S_OK) return hr;
-    return S_OK;
+    return write_int31( writer, id );
 }
 
 static enum record_type get_attr_text_record_type( const WS_XML_TEXT *text, BOOL use_dict )
-- 
2.11.0




More information about the wine-devel mailing list