mirror of
https://github.com/gnustep/libs-base.git
synced 2025-05-29 16:01:38 +00:00
Fix nil to NULL
This commit is contained in:
parent
093ab72a47
commit
d7c9bdbce7
1 changed files with 1 additions and 1 deletions
|
@ -295,7 +295,7 @@ handleExit()
|
|||
[exitLock lock];
|
||||
for (l = exited; l != NULL; l = l->next)
|
||||
{
|
||||
if (l->obj == anObject || (l->at != nil && *l->at == anObject))
|
||||
if (l->obj == anObject || (l->at != NULL && *l->at == anObject))
|
||||
{
|
||||
[exitLock unlock];
|
||||
[NSException raise: NSInvalidArgumentException
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue