huge cleanup and conversion of most string handling (especially paths) to unicode

please note: format strings must be %hs for char* arguments and %ls for
wchar_t*

This was SVN commit r7161.
This commit is contained in:
janwas
2009-11-03 21:46:35 +00:00
parent a46f3432f3
commit 8a52113e60
317 changed files with 2517 additions and 2588 deletions
+1 -1
View File
@@ -166,7 +166,7 @@ void FixBrokenXML(const char* text, const char** out, size_t* outSize)
Log(LOG_INFO, "Running FixBrokenXML");
size_t textSize = strlen(text);
xmlDocPtr doc = xmlParseMemory(text, textSize);
xmlDocPtr doc = xmlParseMemory(text, (int)textSize);
xmlNode* root = xmlDocGetRootElement(doc);
if (root && processDocument(root))