msxml3: Void function should not return a value.
This commit is contained in:
parent
c7284efa13
commit
ce3af50d10
@ -1353,7 +1353,10 @@ static void libxmlCDataBlock(void *ctx, const xmlChar *value, int len)
|
|||||||
hr = ISAXLexicalHandler_startCDATA(This->saxreader->lexicalHandler);
|
hr = ISAXLexicalHandler_startCDATA(This->saxreader->lexicalHandler);
|
||||||
|
|
||||||
if(FAILED(hr))
|
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;
|
realLen = This->pParserCtxt->input->cur-beg-3;
|
||||||
cur = beg;
|
cur = beg;
|
||||||
|
Loading…
x
Reference in New Issue
Block a user