mirror of
https://github.com/gnustep/libs-base.git
synced 2025-05-30 08:21:25 +00:00
Fix for parsing octal and hex escapes
git-svn-id: svn+ssh://svn.gna.org/svn/gnustep/libs/base/trunk@10135 72102866-910b-0410-8b05-ffd578937521
This commit is contained in:
parent
2a97b9caa3
commit
11d46ed1ba
2 changed files with 7 additions and 0 deletions
|
@ -4035,6 +4035,7 @@ static inline id parseQuotedString(pldata* pld)
|
|||
if (escaped == 10)
|
||||
{
|
||||
escaped = 0;
|
||||
k++;
|
||||
}
|
||||
}
|
||||
else if (c >= '0' && c <= '7')
|
||||
|
@ -4045,6 +4046,7 @@ static inline id parseQuotedString(pldata* pld)
|
|||
if (escaped == 4)
|
||||
{
|
||||
escaped = 0;
|
||||
k++;
|
||||
}
|
||||
}
|
||||
else
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue