Fixes from Jeremy Bettis

git-svn-id: svn+ssh://svn.gna.org/svn/gnustep/libs/base/trunk@21535 72102866-910b-0410-8b05-ffd578937521
This commit is contained in:
CaS 2005-07-25 16:00:52 +00:00
parent 299b6fc807
commit bec8a74a6e
5 changed files with 22 additions and 22 deletions

View file

@ -1299,6 +1299,10 @@ GSDescriptionForClassMethod(pcl self, SEL aSel)
{
struct objc_protocol_list* proto_list;
if (aProtocol == 0)
{
return NO;
}
for (proto_list = ((struct objc_class*)self)->protocols;
proto_list; proto_list = proto_list->next)
{