msxml3: Void function should not return a value

Andrew Talbot andrew.talbot at talbotville.com
Thu Nov 13 16:20:52 CST 2008


Changelog:
    msxml3: Void function should not return a value.

diff --git a/dlls/msxml3/saxreader.c b/dlls/msxml3/saxreader.c
index 4a98b4b..5b16663 100644
--- a/dlls/msxml3/saxreader.c
+++ b/dlls/msxml3/saxreader.c
@@ -1353,7 +1353,10 @@ static void libxmlCDataBlock(void *ctx, const xmlChar *value, int len)
         hr = ISAXLexicalHandler_startCDATA(This->saxreader->lexicalHandler);
 
     if(FAILED(hr))
-        return format_error_message_from_id(This, hr);
+    {
+        format_error_message_from_id(This, hr);
+        return;
+    }
 
     realLen = This->pParserCtxt->input->cur-beg-3;
     cur = beg;



More information about the wine-patches mailing list