patch from Alex Khesin fixing CDATA output after a text node. fixed the

* xmlwriter.c: patch from Alex Khesin fixing CDATA output after
  a text node.
* parser.c: fixed the comment for xmlParserCleanup
* globals.c: fixed indentation
Daniel

svn path=/trunk/; revision=3699
This commit is contained in:
Daniel Veillard 2008-03-04 13:19:49 +00:00
parent 70e20add80
commit ccc476f177
4 changed files with 10 additions and 2 deletions

View File

@ -1,3 +1,10 @@
Tue Mar 4 14:16:38 CET 2008 Daniel Veillard <daniel@veillard.com>
* xmlwriter.c: patch from Alex Khesin fixing CDATA output after
a text node.
* parser.c: fixed the comment for xmlParserCleanup
* globals.c: fixed indentation
Mon Feb 25 16:42:19 CET 2008 Daniel Veillard <daniel@veillard.com>
* testModule.c: patch from Florent Guiliani to fix build on

View File

@ -60,7 +60,7 @@ void xmlCleanupGlobals(void)
xmlFreeMutex(xmlThrDefMutex);
xmlThrDefMutex = NULL;
}
__xmlGlobalInitMutexDestroy();
__xmlGlobalInitMutexDestroy();
}
/************************************************************************

View File

@ -12956,7 +12956,7 @@ xmlInitParser(void) {
* It doesn't deallocate any document related memory. Calling this
* function should not prevent reusing the library but one should
* call xmlCleanupParser() only when the process has
* finished using the library or XML document built with it.
* finished using the library and all XML document built with it.
*/
void

View File

@ -2614,6 +2614,7 @@ xmlTextWriterStartCDATA(xmlTextWriterPtr writer)
if (p != 0) {
switch (p->state) {
case XML_TEXTWRITER_NONE:
case XML_TEXTWRITER_TEXT:
case XML_TEXTWRITER_PI:
case XML_TEXTWRITER_PI_TEXT:
break;