On Aug 27, 2008, at 12:05 PM, Sherm Pendley wrote:

On Wed, Aug 27, 2008 at 1:48 PM, Kevin Kicklighter
<[EMAIL PROTECTED]> wrote:

              NSDictionary *theError = [[[NSDictionary alloc] init]
autorelease];

              [quitScript executeAndReturnError:&theError];
      }

That still leaks the dictionary you created. Didn't you get my message
about that? You should do this instead:

  NSDictionary *theError = nil;
  [quitScript executeAndReturnError: &theError];

sherm--


It's autoreleased - how could that leak?

Ken

--
Ken Worley
Software Engineer, Tiberius, Inc.



_______________________________________________

Cocoa-dev mailing list (Cocoa-dev@lists.apple.com)

Please do not post admin requests or moderator comments to the list.
Contact the moderators at cocoa-dev-admins(at)lists.apple.com

Help/Unsubscribe/Update your Subscription:
http://lists.apple.com/mailman/options/cocoa-dev/archive%40mail-archive.com

This email sent to [EMAIL PROTECTED]

Reply via email to