From: Fabian Maurer dark.shadow4@web.de
Fixes regression by 9d34c44d8464722c333fdde5313b341504d3ea44.
Wine-Bug: https://bugs.winehq.org/show_bug.cgi?id=57325 --- dlls/msxml3/main.c | 5 ++++- 1 file changed, 4 insertions(+), 1 deletion(-)
diff --git a/dlls/msxml3/main.c b/dlls/msxml3/main.c index c92cd49aaf3..16e0b38b185 100644 --- a/dlls/msxml3/main.c +++ b/dlls/msxml3/main.c @@ -24,6 +24,7 @@ #include <stdarg.h> #include <libxml/parser.h> #include <libxml/xmlerror.h> +#include <libxml/xmlsave.h> #include <libxslt/pattern.h> #include <libxslt/transform.h> #include <libxslt/imports.h> @@ -365,8 +366,10 @@ BOOL WINAPI DllMain(HINSTANCE hInstDLL, DWORD fdwReason, LPVOID reserved) case DLL_PROCESS_ATTACH: xmlInitParser();
- /* Set the default indent character to a single tab */ + /* Set the default indent character to a single tab, + for this thread and as default for new threads */ xmlTreeIndentString = "\t"; + xmlThrDefTreeIndentString("\t");
/* Register callbacks for loading XML files */ if(xmlRegisterInputCallbacks(wineXmlMatchCallback, wineXmlOpenCallback,