mirror of
https://github.com/libexpat/libexpat.git
synced 2025-04-06 05:34:59 +00:00
Fix bug with end of buffer after ) in prolog
This commit is contained in:
parent
fa8b616b9c
commit
d40b82ff26
1 changed files with 1 additions and 1 deletions
|
@ -1007,7 +1007,7 @@ int PREFIX(prologTok)(const ENCODING *enc, const char *ptr, const char *end,
|
|||
case BT_RPAR:
|
||||
ptr += MINBPC;
|
||||
if (ptr == end)
|
||||
return XML_TOK_INVALID;
|
||||
return XML_TOK_PARTIAL;
|
||||
switch (BYTE_TYPE(enc, ptr)) {
|
||||
case BT_AST:
|
||||
*nextTokPtr = ptr + MINBPC;
|
||||
|
|
Loading…
Add table
Reference in a new issue