msxml3: Fix structured error callback implementation when no message data available.

This commit is contained in:
Nikolay Sivov 2012-02-16 20:02:45 +03:00 committed by Alexandre Julliard
parent 1dab61125e
commit d73cfb92b3

View file

@ -96,7 +96,12 @@ void wineXmlCallbackError(char const* caller, xmlErrorPtr err)
case XML_ERR_WARNING: dbcl = __WINE_DBCL_WARN; break;
default: dbcl = __WINE_DBCL_ERR; break;
}
wine_dbg_log(dbcl, &__wine_dbch_msxml, caller, "%s", debugstr_a(err->message));
wine_dbg_log(dbcl, &__wine_dbch_msxml, caller, "error code %d", err->code);
if (err->message)
wine_dbg_log(dbcl, &__wine_dbch_msxml, caller, ": %s", err->message);
else
wine_dbg_log(dbcl, &__wine_dbch_msxml, caller, "\n");
}
/* Support for loading xml files from a Wine Windows drive */