more static analyser fixups

git-svn-id: svn+ssh://svn.gna.org/svn/gnustep/libs/base/trunk@36843 72102866-910b-0410-8b05-ffd578937521
This commit is contained in:
Richard Frith-MacDonald 2013-07-06 07:14:45 +00:00
parent f8a14cae14
commit f7182588d0
5 changed files with 34 additions and 12 deletions

View file

@ -76,7 +76,11 @@ next_arg(const char *typePtr, NSArgumentInfo *info, char *outTypes)
BOOL flag;
BOOL negative = NO;
if (info == 0)
if (0 == typePtr)
{
return 0;
}
if (0 == info)
{
info = &local;
}