mirror of
https://gitlab.gnome.org/GNOME/libxml2
synced 2025-03-28 21:33:13 +00:00
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:
parent
70e20add80
commit
ccc476f177
@ -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
|
||||
|
@ -60,7 +60,7 @@ void xmlCleanupGlobals(void)
|
||||
xmlFreeMutex(xmlThrDefMutex);
|
||||
xmlThrDefMutex = NULL;
|
||||
}
|
||||
__xmlGlobalInitMutexDestroy();
|
||||
__xmlGlobalInitMutexDestroy();
|
||||
}
|
||||
|
||||
/************************************************************************
|
||||
|
2
parser.c
2
parser.c
@ -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
|
||||
|
@ -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;
|
||||
|
Loading…
x
Reference in New Issue
Block a user