Ticket #29190: Gridlock.diff

File Gridlock.diff, 1.7 KB (added by skavookie@…, 13 years ago)
Line 
1Common subdirectories: Gridlock/English.lproj and ../Gridlock/English.lproj
2Common subdirectories: Gridlock/French.lproj and ../Gridlock/French.lproj
3Common subdirectories: Gridlock/German.lproj and ../Gridlock/German.lproj
4Common subdirectories: Gridlock/Gridlock.xcodeproj and ../Gridlock/Gridlock.xcodeproj
5Common subdirectories: Gridlock/Japanese.lproj and ../Gridlock/Japanese.lproj
6diff Gridlock/NSObject+Extensions.m ../Gridlock/NSObject+Extensions.m
792c92
8<     struct objc_method_list   *mlist;
9---
10>     //struct objc_method_list *mlist;
1195c95,97
12<
13---
14>       Method                                  *methlist;
15>       int                                             count;
16>       
17100,107c102,117
18<     while((mlist = class_nextMethodList(aClass, &iterator)) != NULL)
19<         {
20<         for(i = 0; i < mlist->method_count; i++)
21<             {
22<             if((mlist->method_list[i].method_name == aSelector) && (mlist->method_list[i].method_imp != activeIMP))
23<                 return mlist->method_list[i].method_imp;
24<             }
25<         }
26---
27>       methlist = class_copyMethodList(aClass, &count);
28>       for (i = 0; i < count; i++) {
29>               if((method_getName(methlist[i]) == aSelector) && (method_getImplementation(methlist[i]) != activeIMP)) {
30>                       IMP unused = method_getImplementation(methlist[i]);
31>                       free(methlist);
32>               }
33>       }
34>       free(methlist);
35> //    while((mlist = class_nextMethodList(aClass, &iterator)) != NULL)
36> //        {
37> //        for(i = 0; i < mlist->method_count; i++)
38> //            {
39> //            if((mlist->method_list[i].method_name == aSelector) && (mlist->method_list[i].method_imp != activeIMP))
40> //                return mlist->method_list[i].method_imp;
41> //            }
42> //        }
43Only in ../Gridlock/: build
44diff Gridlock/osdep.h ../Gridlock/osdep.h
45133a134
46> #import <netinet/tcp.h>