Re: Breaking on 'autoreleased with no pool in place - just leaking'

2010-02-03 Thread Keith Duncan
On 2 Feb 2010, at 09:40, Matt Gough wrote: > What symbol should I put a break point on […] > > I tried NSLog and printf but it wasn't them. You can also set a breakpoint on 'asl_send' to catch logging. Keith___ Cocoa-dev mailing list (Cocoa-dev@list

Re: Breaking on 'autoreleased with no pool in place - just leaking'

2010-02-02 Thread Dave Keck
> What symbol should I put a break point on to track down which part of my code > is responsible for trying to autorelease without a pool in place. > > i.e, what prints out the "__NSAutoreleaseNoPool(): Object 0xc74bc0 of class > NSCFString autoreleased with no pool in place - just leaking" messa

Breaking on 'autoreleased with no pool in place - just leaking'

2010-02-02 Thread Matt Gough
What symbol should I put a break point on to track down which part of my code is responsible for trying to autorelease without a pool in place. i.e, what prints out the "__NSAutoreleaseNoPool(): Object 0xc74bc0 of class NSCFString autoreleased with no pool in place - just leaking" messages. I t