mirror of
https://github.com/zeux/pugixml.git
synced 2025-01-14 09:57:57 +08:00
Fixed strconv_t (incorrect skipping of non-escape symbols)
git-svn-id: http://pugixml.googlecode.com/svn/trunk@24 99668b35-9821-0410-8761-19e4c4f06640
This commit is contained in:
parent
33c5406641
commit
fd1432df88
@ -268,7 +268,7 @@ namespace pugi
|
||||
{
|
||||
while (*str)
|
||||
{
|
||||
if (opt_wconv && *str == '&') break;
|
||||
if (opt_escape && *str == '&') break;
|
||||
if ((opt_wnorm || opt_wconv || opt_eol) && chartype_space(*str)) break;
|
||||
++str;
|
||||
}
|
||||
|
Loading…
x
Reference in New Issue
Block a user