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)
|
while (*str)
|
||||||
{
|
{
|
||||||
if (opt_wconv && *str == '&') break;
|
if (opt_escape && *str == '&') break;
|
||||||
if ((opt_wnorm || opt_wconv || opt_eol) && chartype_space(*str)) break;
|
if ((opt_wnorm || opt_wconv || opt_eol) && chartype_space(*str)) break;
|
||||||
++str;
|
++str;
|
||||||
}
|
}
|
||||||
|
|||||||
Loading…
Reference in New Issue
Block a user