mirror of
https://gitlab.gnome.org/GNOME/libxml2
synced 2025-03-28 21:33:13 +00:00
encoding: Don't shrink input too early in xmlCharEncOutput
Some exotic encodings like ISO646-FR don't support '#' characters, so encoding a character reference can actually fail. Don't skip the offending input in this case so the error will be reported on the next call.
This commit is contained in:
parent
3f05508a53
commit
072facc49e
@ -2491,7 +2491,6 @@ retry:
|
||||
*/
|
||||
charrefLen = snprintf((char *) &charref[0], sizeof(charref),
|
||||
"&#%d;", cur);
|
||||
xmlBufShrink(in, len);
|
||||
xmlBufGrow(out, charrefLen * 4);
|
||||
c_out = xmlBufAvail(out);
|
||||
c_in = charrefLen;
|
||||
@ -2502,6 +2501,7 @@ retry:
|
||||
goto error;
|
||||
}
|
||||
|
||||
xmlBufShrink(in, len);
|
||||
xmlBufAddLen(out, c_out);
|
||||
writtentot += c_out;
|
||||
goto retry;
|
||||
|
Loading…
x
Reference in New Issue
Block a user