mirror of
https://github.com/libexpat/libexpat.git
synced 2025-04-05 21:24:59 +00:00
Fix bug with encoding declaration in prolog.
This commit is contained in:
parent
99a358f0c0
commit
b1b875e78e
1 changed files with 2 additions and 0 deletions
|
@ -2196,6 +2196,7 @@ doProlog(XML_Parser parser,
|
|||
enum XML_Error result = processXmlDecl(parser, 0, s, next);
|
||||
if (result != XML_ERROR_NONE)
|
||||
return result;
|
||||
enc = encoding;
|
||||
}
|
||||
break;
|
||||
#ifdef XML_DTD
|
||||
|
@ -2204,6 +2205,7 @@ doProlog(XML_Parser parser,
|
|||
enum XML_Error result = processXmlDecl(parser, 1, s, next);
|
||||
if (result != XML_ERROR_NONE)
|
||||
return result;
|
||||
enc = encoding;
|
||||
}
|
||||
break;
|
||||
#endif /* XML_DTD */
|
||||
|
|
Loading…
Add table
Reference in a new issue