Skip to content

Commit

Permalink
fixed memory leak
Browse files Browse the repository at this point in the history
  • Loading branch information
Sudeep Yegnashankaran committed May 9, 2011
1 parent 96ad318 commit 7ec96e8
Showing 1 changed file with 5 additions and 1 deletion.
6 changes: 5 additions & 1 deletion OAuthStarterKit/OAuthLoginView.m
Original file line number Diff line number Diff line change
Expand Up @@ -267,7 +267,11 @@ - (id)initWithNibName:(NSString *)nibNameOrNil bundle:(NSBundle *)nibBundleOrNil
}

- (void)dealloc
{
{
[requestTokenURL release];
[accessTokenURL release];
[userLoginURL release];

[super dealloc];
}

Expand Down

0 comments on commit 7ec96e8

Please sign in to comment.