Commit f8112cc5 authored by Piotr Caban's avatar Piotr Caban Committed by Alexandre Julliard

msxml3: Don't report fatal errors many times.

parent 6c683198
......@@ -1458,6 +1458,9 @@ static void libxmlFatalError(void *ctx, const char *msg, ...)
DWORD len;
va_list args;
if(This->ret != S_OK)
return;
va_start(args, msg);
vsprintf(message, msg, args);
va_end(args);
......
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