mirror of
https://gitlab.gnome.org/GNOME/libxml2.git
synced 2025-07-30 22:43:14 +03:00
fixed xmlParserInputBufferCreateMem doc Daniel
* xmlIO.c: fixed xmlParserInputBufferCreateMem doc Daniel
This commit is contained in:
@ -1,3 +1,7 @@
|
|||||||
|
Wed Jan 3 21:51:13 CET 2001 Daniel Veillard <Daniel.Veillard@imag.fr>
|
||||||
|
|
||||||
|
* xmlIO.c: fixed xmlParserInputBufferCreateMem doc
|
||||||
|
|
||||||
Wed Jan 3 18:56:00 CET 2001 Daniel Veillard <Daniel.Veillard@imag.fr>
|
Wed Jan 3 18:56:00 CET 2001 Daniel Veillard <Daniel.Veillard@imag.fr>
|
||||||
|
|
||||||
* HTMLparser.c: htmlCheckParagraph to check htmlOmittedDefaultValue,
|
* HTMLparser.c: htmlCheckParagraph to check htmlOmittedDefaultValue,
|
||||||
|
2
tree.c
2
tree.c
@ -4817,7 +4817,7 @@ xmlAttrDump(xmlBufferPtr buf, xmlDocPtr doc, xmlAttrPtr cur) {
|
|||||||
}
|
}
|
||||||
xmlBufferWriteCHAR(buf, cur->name);
|
xmlBufferWriteCHAR(buf, cur->name);
|
||||||
value = xmlNodeListGetString(doc, cur->children, 0);
|
value = xmlNodeListGetString(doc, cur->children, 0);
|
||||||
if (value) {
|
if (value != NULL) {
|
||||||
xmlBufferWriteChar(buf, "=");
|
xmlBufferWriteChar(buf, "=");
|
||||||
xmlBufferWriteQuotedString(buf, value);
|
xmlBufferWriteQuotedString(buf, value);
|
||||||
xmlFree(value);
|
xmlFree(value);
|
||||||
|
2
xmlIO.c
2
xmlIO.c
@ -1095,7 +1095,7 @@ xmlParserInputBufferCreateFd(int fd, xmlCharEncoding enc) {
|
|||||||
* @enc: the charset encoding if known
|
* @enc: the charset encoding if known
|
||||||
*
|
*
|
||||||
* Create a buffered parser input for the progressive parsing for the input
|
* Create a buffered parser input for the progressive parsing for the input
|
||||||
* from a file descriptor
|
* from a memory area.
|
||||||
*
|
*
|
||||||
* Returns the new parser input or NULL
|
* Returns the new parser input or NULL
|
||||||
*/
|
*/
|
||||||
|
Reference in New Issue
Block a user