patch for bug 35685 by Jens Alfke <jens@mooseyard.com>

git-svn-id: svn+ssh://svn.gna.org/svn/gnustep/libs/base/trunk@34857 72102866-910b-0410-8b05-ffd578937521
This commit is contained in:
Richard Frith-MacDonald 2012-03-02 07:07:43 +00:00
parent 5393256ae6
commit 16ff2d0e26
3 changed files with 11 additions and 4 deletions

View file

@ -1013,7 +1013,7 @@ static NSUInteger urlAlign;
{
c = *str - '0';
}
else if (*str <= 'A')
else if (*str <= 'F')
{
c = *str - 'A' + 10;
}
@ -1027,7 +1027,7 @@ static NSUInteger urlAlign;
{
c |= *str - '0';
}
else if (*str <= 'A')
else if (*str <= 'F')
{
c |= *str - 'A' + 10;
}