mirror of
https://gitlab.gnome.org/GNOME/libxml2.git
synced 2025-07-30 22:43:14 +03:00
Rebuit doc finished closing a few bugs, Daniel.
This commit is contained in:
@ -1,3 +1,9 @@
|
|||||||
|
Sat Mar 4 16:14:42 CET 2000 Daniel Veillard <Daniel.Veillard@w3.org>
|
||||||
|
|
||||||
|
* doc/* : rebuilt the docs
|
||||||
|
* parser.c: final patch on #6766
|
||||||
|
* valid.c: small patch on validity checks.
|
||||||
|
|
||||||
Sat Mar 4 12:38:41 CET 2000 Daniel Veillard <Daniel.Veillard@w3.org>
|
Sat Mar 4 12:38:41 CET 2000 Daniel Veillard <Daniel.Veillard@w3.org>
|
||||||
|
|
||||||
* doc/upgrade.html: instruction on how to upgrade from 1.x to 2.x
|
* doc/upgrade.html: instruction on how to upgrade from 1.x to 2.x
|
||||||
|
6
parser.c
6
parser.c
@ -8320,8 +8320,8 @@ xmlRecoverFile(const char *filename) {
|
|||||||
|
|
||||||
/**
|
/**
|
||||||
* xmlCreateMemoryParserCtxt :
|
* xmlCreateMemoryParserCtxt :
|
||||||
* @buffer: an pointer to a char array
|
* @buffer: an pointer to a zero terminated char array
|
||||||
* @size: the size of the array
|
* @size: the size of the array (without the trailing 0)
|
||||||
*
|
*
|
||||||
* Create a parser context for an XML in-memory document.
|
* Create a parser context for an XML in-memory document.
|
||||||
*
|
*
|
||||||
@ -8334,7 +8334,7 @@ xmlCreateMemoryParserCtxt(char *buffer, int size) {
|
|||||||
xmlCharEncoding enc;
|
xmlCharEncoding enc;
|
||||||
|
|
||||||
if (buffer[size] != '\0')
|
if (buffer[size] != '\0')
|
||||||
buffer[size] = '\0';
|
return(NULL);
|
||||||
|
|
||||||
ctxt = xmlNewParserCtxt();
|
ctxt = xmlNewParserCtxt();
|
||||||
if (ctxt == NULL) {
|
if (ctxt == NULL) {
|
||||||
|
Reference in New Issue
Block a user