aboutsummaryrefslogtreecommitdiffstats
path: root/HTMLtree.c
diff options
context:
space:
mode:
authorDaniel Veillard <veillard@src.gnome.org>2002-04-18 11:54:04 +0000
committerDaniel Veillard <veillard@src.gnome.org>2002-04-18 11:54:04 +0000
commit6231e845599329d10400e5f8ef9245e1434b4bf7 (patch)
tree7648d34bc61e385ef82e600e729b777de1cbb311 /HTMLtree.c
parent648b8e9707afe888bb3cf35294014a05a336bc0f (diff)
downloadandroid_external_libxml2-6231e845599329d10400e5f8ef9245e1434b4bf7.tar.gz
android_external_libxml2-6231e845599329d10400e5f8ef9245e1434b4bf7.tar.bz2
android_external_libxml2-6231e845599329d10400e5f8ef9245e1434b4bf7.zip
fixed & serialization bug introduced in 2.4.20 this changes a few things
* HTMLtree.c: fixed & serialization bug introduced in 2.4.20 * result/HTML/*: this changes a few things in the results Daniel
Diffstat (limited to 'HTMLtree.c')
-rw-r--r--HTMLtree.c4
1 files changed, 2 insertions, 2 deletions
diff --git a/HTMLtree.c b/HTMLtree.c
index 67b91cb6..872f2f01 100644
--- a/HTMLtree.c
+++ b/HTMLtree.c
@@ -357,7 +357,7 @@ htmlAttrDump(xmlBufferPtr buf, xmlDocPtr doc, xmlAttrPtr cur) {
while (IS_BLANK(*tmp)) tmp++;
- escaped = xmlURIEscapeStr(tmp, BAD_CAST"@/:=?;#%");
+ escaped = xmlURIEscapeStr(tmp, BAD_CAST"@/:=?;#%&");
if (escaped != NULL) {
xmlBufferWriteQuotedString(buf, escaped);
xmlFree(escaped);
@@ -844,7 +844,7 @@ htmlAttrDumpOutput(xmlOutputBufferPtr buf, xmlDocPtr doc, xmlAttrPtr cur,
while (IS_BLANK(*tmp)) tmp++;
- escaped = xmlURIEscapeStr(tmp, BAD_CAST"@/:=?;#%");
+ escaped = xmlURIEscapeStr(tmp, BAD_CAST"@/:=?;#%&");
if (escaped != NULL) {
xmlBufferWriteQuotedString(buf->buffer, escaped);
xmlFree(escaped);