1
0
mirror of https://gitlab.gnome.org/GNOME/libxml2.git synced 2025-10-21 14:53:44 +03:00

parser: Simplify entity size accounting

This commit is contained in:
Nick Wellnhofer
2023-12-29 21:07:04 +01:00
parent 08d9b2588f
commit 2b79f106ff
2 changed files with 64 additions and 75 deletions

View File

@@ -73,7 +73,7 @@ struct _xmlParserInput {
const xmlChar *version; /* the version string for entity */
int flags; /* Flags */
int id; /* an unique identifier for the entity */
unsigned long parentConsumed; /* consumed bytes from parents */
unsigned long parentConsumed; /* unused */
xmlEntityPtr entity; /* entity, if any */
};