summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
-rw-r--r--lib/xmltok_impl.c2
1 files changed, 2 insertions, 0 deletions
diff --git a/lib/xmltok_impl.c b/lib/xmltok_impl.c
index 1268819..b71410d 100644
--- a/lib/xmltok_impl.c
+++ b/lib/xmltok_impl.c
@@ -1748,6 +1748,8 @@ PREFIX(updatePosition)(const ENCODING *enc,
switch (BYTE_TYPE(enc, ptr)) {
#define LEAD_CASE(n) \
case BT_LEAD ## n: \
+ if (end - ptr < n) \
+ return; \
ptr += n; \
break;
LEAD_CASE(2) LEAD_CASE(3) LEAD_CASE(4)