mirror of
https://gitlab.gnome.org/GNOME/libxml2.git
synced 2025-01-14 19:24:06 +03:00
fixed xmlParserInputBufferCreateMem doc Daniel
* xmlIO.c: fixed xmlParserInputBufferCreateMem doc Daniel
This commit is contained in:
parent
45cff696cf
commit
f060a418ae
@ -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>
|
||||
|
||||
* 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);
|
||||
value = xmlNodeListGetString(doc, cur->children, 0);
|
||||
if (value) {
|
||||
if (value != NULL) {
|
||||
xmlBufferWriteChar(buf, "=");
|
||||
xmlBufferWriteQuotedString(buf, value);
|
||||
xmlFree(value);
|
||||
|
2
xmlIO.c
2
xmlIO.c
@ -1095,7 +1095,7 @@ xmlParserInputBufferCreateFd(int fd, xmlCharEncoding enc) {
|
||||
* @enc: the charset encoding if known
|
||||
*
|
||||
* 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
|
||||
*/
|
||||
|
Loading…
x
Reference in New Issue
Block a user