mirror of
https://github.com/gnustep/libs-base.git
synced 2025-04-23 09:04:13 +00:00
* Source/NSKeyValueObserving.m
* Source/NSXMLParser.m char is unsigned on macppc, so don't compare it against negative values OK Richard git-svn-id: svn+ssh://svn.gna.org/svn/gnustep/libs/base/trunk@36251 72102866-910b-0410-8b05-ffd578937521
This commit is contained in:
parent
c487ad9f67
commit
7535869550
3 changed files with 8 additions and 2 deletions
|
@ -1,3 +1,9 @@
|
|||
2012-03-03 Sebastian Reitenbach <sebastia@l00-bugdead-prods.de>
|
||||
* Source/NSKeyValueObserving.m
|
||||
* Source/NSXMLParser.m
|
||||
char is unsigned on macppc, so don't compare it
|
||||
against negative values
|
||||
|
||||
2012-03-01 Richard Frith-Macdonald <rfm@gnu.org>
|
||||
|
||||
* Version ... bump subminor number in preparation for next release.
|
||||
|
|
|
@ -329,7 +329,7 @@ static NSString *newKey(SEL _cmd)
|
|||
len -= 4; // allow for 'set' and trailing ':'
|
||||
for (i = 0; i < len; i++)
|
||||
{
|
||||
if (name[i] < 0)
|
||||
if (name[i] & 0x80)
|
||||
{
|
||||
break;
|
||||
}
|
||||
|
|
|
@ -993,7 +993,7 @@ static SEL foundIgnorableSel;
|
|||
const unsigned char *tp;
|
||||
NSString *decl;
|
||||
NSString *name;
|
||||
char c;
|
||||
int c;
|
||||
|
||||
if (NO == this->hasStarted)
|
||||
{
|
||||
|
|
Loading…
Reference in a new issue