Skip to content

Commit

Permalink
Merged pull request #14 from oscardelben/master.
Browse files Browse the repository at this point in the history
Memory Leak
  • Loading branch information
Owain R Hunt committed Apr 25, 2011
2 parents 536c6a5 + d75ca9a commit 72c9115
Showing 1 changed file with 8 additions and 0 deletions.
8 changes: 8 additions & 0 deletions UAGithubURLConnection.m
Original file line number Diff line number Diff line change
Expand Up @@ -38,5 +38,13 @@ - (void)appendData:(NSData *)newData
[data appendData:newData];
}

- (void)dealloc
{
[data release];
[identifier release];

[super dealloc];
}


@end

0 comments on commit 72c9115

Please sign in to comment.