aral / XAuthTwitterEngine

A collection of libraries in Objective-C for working with Twitter's xAuth implementation.
207 stars 26 forks source link

memory leak in ExchangeCredentialsOperation #12

Open pixelconsumption opened 14 years ago

pixelconsumption commented 14 years ago

Shouldn't there be a dealloc method?

ohhorob commented 14 years ago

Yep. add a -dealloc method and the memory management is fixed.

- (void)dealloc
{
    [_password release];
    [_username release];
    [_consumer release];
    [super dealloc];
}