mirror of
https://github.com/libexpat/libexpat.git
synced 2025-04-05 21:24:59 +00:00
Fix bug with XML_UNICODE support and duplicate attributes.
This commit is contained in:
parent
7eadec98df
commit
3bddd238db
1 changed files with 1 additions and 1 deletions
|
@ -1142,7 +1142,7 @@ static enum XML_Error storeAtts(XML_Parser parser, const ENCODING *enc,
|
|||
appAtts[i << 1] = 0;
|
||||
}
|
||||
while (i-- > 0)
|
||||
((char *)appAtts[i << 1])[-1] = 0;
|
||||
((XML_Char *)appAtts[i << 1])[-1] = 0;
|
||||
return XML_ERROR_NONE;
|
||||
}
|
||||
|
||||
|
|
Loading…
Add table
Reference in a new issue