Skip to content

Commit

Permalink
Some ivars were not being released in -dealloc.
Browse files Browse the repository at this point in the history
  • Loading branch information
aidansteele committed Sep 11, 2011
1 parent 407f5d8 commit 09a7001
Show file tree
Hide file tree
Showing 3 changed files with 18 additions and 0 deletions.
3 changes: 3 additions & 0 deletions Classes/CloudFiles/ASICloudFilesContainer.m
Original file line number Diff line number Diff line change
Expand Up @@ -22,6 +22,9 @@ + (id)container {

-(void) dealloc {
[name release];
[cdnURL release];
[referrerACL release];
[useragentACL release];
[super dealloc];
}

Expand Down
9 changes: 9 additions & 0 deletions Classes/S3/ASIS3Bucket.m
Original file line number Diff line number Diff line change
Expand Up @@ -29,4 +29,13 @@ - (NSString *)description
@synthesize creationDate;
@synthesize ownerID;
@synthesize ownerName;

- (void)dealloc
{
[name release];
[creationDate release];
[ownerID release];
[ownerName release];
}

@end
6 changes: 6 additions & 0 deletions iPhone Sample/RootViewController.m
Original file line number Diff line number Diff line change
Expand Up @@ -115,6 +115,12 @@ - (void)splitViewController:(UISplitViewController *)svc popoverController: (UIP
}
}

- (void)dealloc
{
[popoverController release];
[rootPopoverButtonItem release];
[super dealloc];
}

@synthesize splitViewController;
@synthesize popoverController;
Expand Down

0 comments on commit 09a7001

Please sign in to comment.