mirror of
https://gitlab.gnome.org/GNOME/libxml2.git
synced 2025-07-28 00:21:53 +03:00
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
This commit is contained in:
@ -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);
|
||||
|
Reference in New Issue
Block a user