msxml3: Don't report fatal errors many times.

This commit is contained in:
Piotr Caban 2011-10-24 12:54:47 +02:00 committed by Alexandre Julliard
parent 6c68319863
commit f8112cc548
1 changed files with 3 additions and 0 deletions

View File

@ -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);