1
0
mirror of https://gitlab.gnome.org/GNOME/libxml2.git synced 2025-07-29 11:41:22 +03:00

preparing 2.4.10 upgraded and rebuilt the docs Daniel

* configure.in include/libxml/xmlwin32version.h: preparing 2.4.10
* doc/*: upgraded and rebuilt the docs
Daniel
This commit is contained in:
Daniel Veillard
2001-11-10 11:57:23 +00:00
parent c1f78343b6
commit 43d3f61ad5
54 changed files with 3946 additions and 2934 deletions

5
uri.c
View File

@ -1004,10 +1004,9 @@ xmlURIEscape(const xmlChar * str)
if (uri->port) {
xmlChar port[10];
snprintf((char *) segment, 10, "%d", uri->port);
snprintf((char *) port, 10, "%d", uri->port);
ret = xmlStrcat(ret, BAD_CAST ":");
ret = xmlStrcat(ret, port);
xmlFree(segment);
}
if (uri->path) {
@ -1042,6 +1041,8 @@ xmlURIEscape(const xmlChar * str)
ret = xmlStrcat(ret, segment);
xmlFree(segment);
}
xmlFreeURI(uri);
#undef NULLCHK
return (ret);