2007-10-02 02:47:43 +02:00
|
|
|
// RUN: %llvmgcc -c -w -m64 -mmacosx-version-min=10.5 %s -o /dev/null
|
2007-11-09 14:50:25 +01:00
|
|
|
// XFAIL: *
|
2007-11-08 23:26:46 +01:00
|
|
|
// XTARGET: darwin
|
2007-09-27 20:02:47 +02:00
|
|
|
@class NSDictionary, DSoBuffer, DSoDirectory, NSMutableArray;
|
|
|
|
@interface NSException {}
|
|
|
|
@end
|
|
|
|
@interface DSoNode {
|
|
|
|
DSoDirectory *mDirectory;
|
|
|
|
}
|
|
|
|
@end
|
|
|
|
@implementation DSoNode
|
|
|
|
- (void) _findRecordsOfTypes {
|
|
|
|
DSoBuffer *dbData;
|
|
|
|
void *recInfo;
|
|
|
|
NSMutableArray *results;
|
|
|
|
@try {
|
|
|
|
dsGetRecordEntry([dbData dsDataBuffer], (void**)&recInfo);
|
|
|
|
@try {
|
|
|
|
[results addObject:37];
|
|
|
|
} @finally {
|
|
|
|
dsDeallocRecordEntry([mDirectory dsDirRef], recInfo);
|
|
|
|
}
|
|
|
|
} @catch(NSException * exception) {
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
|