Commit ce3af50d authored by Andrew Talbot's avatar Andrew Talbot Committed by Alexandre Julliard

msxml3: Void function should not return a value.

parent c7284efa
......@@ -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;
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment