Can not use MR_AUTORELEASE like normal autorelease.

This commit is contained in:
Cody Rayment
2011-12-07 09:57:43 -07:00
parent 04d6861056
commit 8c75ec620d

View File

@@ -263,7 +263,8 @@ NSString * const kMagicalRecordPSCDidCompleteiCloudSetupNotification = @"kMagica
{
NSMutableDictionary *mutDict = [self mutableCopy];
[mutDict addEntriesFromDictionary:d];
return MR_AUTORELEASE(mutDict);
MR_AUTORELEASE(mutDict)
return mutDict;
}
@end