Skip to content

Commit

Permalink
fixed memory issue on friends controller
Browse files Browse the repository at this point in the history
  • Loading branch information
nebillo committed Mar 1, 2011
1 parent c9d8687 commit 4efba81
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion Classes/NMFriendsViewController.m
Expand Up @@ -24,7 +24,7 @@ @implementation NMFriendsViewController
- (id)init {
if ((self = [super initWithNibName:@"NMFriendsViewController" bundle:nil])) {
// Custom initialization
_user = [[NMAuthenticationManager sharedManager] authenticatedUser];
_user = [[[NMAuthenticationManager sharedManager] authenticatedUser] retain];
_friendsFilter = 0;
}
return self;
Expand Down

0 comments on commit 4efba81

Please sign in to comment.