Skip to content

Commit

Permalink
Fixes 259704
Browse files Browse the repository at this point in the history
Fixed a memory leak in the update permission prompt.
  • Loading branch information
andymatuschak committed Sep 4, 2008
1 parent d201803 commit ccef53a
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion SUUpdatePermissionPrompt.m
Original file line number Diff line number Diff line change
Expand Up @@ -23,7 +23,7 @@ - (id)initWithHost:(SUHost *)aHost systemProfile:(NSArray *)profile delegate:(id
if (self)
{
host = [aHost retain];
delegate = [d retain];
delegate = d;
isShowingMoreInfo = NO;
shouldSendProfile = [self shouldAskAboutProfile];
systemProfileInformationArray = [profile retain];
Expand Down

0 comments on commit ccef53a

Please sign in to comment.