static analyzer tweaks

git-svn-id: svn+ssh://svn.gna.org/svn/gnustep/libs/base/trunk@36523 72102866-910b-0410-8b05-ffd578937521
This commit is contained in:
rfm 2013-04-14 09:04:40 +00:00
parent 4ae6afbfc6
commit d68d872655
10 changed files with 110 additions and 97 deletions

View file

@ -244,7 +244,7 @@ static unsigned systemVersion = MAX_SUPPORTED_SYSTEM_VERSION;
- (id) decodeObject
{
id o;
id o = nil;
[self decodeValueOfObjCType: @encode(id) at: &o];
return AUTORELEASE(o);
@ -253,7 +253,7 @@ static unsigned systemVersion = MAX_SUPPORTED_SYSTEM_VERSION;
- (id) decodePropertyList
{
id o;
id d;
id d = nil;
[self decodeValueOfObjCType: @encode(id) at: &d];
if (d != nil)