mirror of
https://github.com/libexpat/libexpat.git
synced 2025-04-08 06:29:23 +00:00
Fix bug in getAtts with '.
This commit is contained in:
parent
2fd2484a0a
commit
3cc8d0075a
1 changed files with 1 additions and 1 deletions
|
@ -1213,7 +1213,7 @@ int PREFIX(getAtts)(const ENCODING *enc, const char *ptr,
|
|||
break;
|
||||
case BT_APOS:
|
||||
if (state != inValue) {
|
||||
atts[nAtts].valuePtr = ptr;
|
||||
atts[nAtts].valuePtr = ptr + MINBPC;
|
||||
state = inValue;
|
||||
open = BT_APOS;
|
||||
}
|
||||
|
|
Loading…
Add table
Reference in a new issue