1
0
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:
Daniel Veillard 2001-01-03 20:52:44 +00:00
parent 45cff696cf
commit f060a418ae
3 changed files with 6 additions and 2 deletions

View File

@ -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
View File

@ -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);

View File

@ -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
*/