Index: src/objc_properties.m ================================================================== --- src/objc_properties.m +++ src/objc_properties.m @@ -23,11 +23,11 @@ id ptr = *(id*)((char*)self + offset); return [[ptr retain] autorelease]; } } - return [[*(id*)((char*)self + offset) retain] autorelease]; + return *(id*)((char*)self + offset); } void objc_setProperty(id self, SEL _cmd, ptrdiff_t offset, id value, BOOL atomic, BOOL copy)