Re: [SOLVED] Re: Help with NSURLConnection memory fault

2009-10-14 Thread Jens Alfke
On Oct 14, 2009, at 7:43 PM, Stuart Malin wrote: Just a "lucky" coincidence that the memory where the dealloc'd NSURLConnection had lived was still the (now defunct) object, so it went through its motions again, and tried to release the delegate a second time. The MallocScribble environm

[SOLVED] Re: Help with NSURLConnection memory fault

2009-10-14 Thread Stuart Malin
On Oct 14, 2009, at 7:24 PM, Jens Alfke wrote: It looks as though your object (the delegate) got dealloced too early, before the NSURLConnection finished loading. This shouldn't be possible, since the connection object retains the delegate, but you may have too many release calls to it som