Fix memory leaks in -reset on RKObjectLoader and RKManagedObjectLoader.

This commit is contained in:
Jeremy Ellison
2011-06-20 09:12:56 -04:00
parent 3bf4b7bc0f
commit de684989db
3 changed files with 11 additions and 5 deletions

View File

@@ -56,6 +56,12 @@
[super dealloc];
}
- (void)reset {
[super reset];
[_response release];
_response = nil;
}
#pragma mark - Response Processing
- (void)finalizeLoad:(BOOL)successful {