Reputation: 7766
Heres my analyzer leak...
I need to return and stop execution of the rest of my method, as I'm stopping the user as hes enter some text fields incorrectly.
Upvotes: 0
Views: 357
Reputation: 2672
By line 442 I'm guessing that that is the alert
value that you set after the WarningMessage. Notice that you've not released it. After the show
try:
[alert show];
[alert autorelease];
return;
Upvotes: 2