Re: NSURLConnection crash

2008-07-24 Thread Sijmen Mulder
Thanks! That's solved it. Submitted as #6100263, just in case. Op 24 jul 2008, om 20:10 heeft Jeff Johnson het volgende geschreven: Sijmen, It seems to be the call to [connection start] that's causing the crash. The call to [[NSURLConnection alloc] initWithRequest:request delegate:self] al

Re: NSURLConnection crash

2008-07-24 Thread Jeff Johnson
Sijmen, It seems to be the call to [connection start] that's causing the crash. The call to [[NSURLConnection alloc] initWithRequest:request delegate:self] already starts it loading, so there's no need to call start. I don't think it should crash -- that may be an Apple bug -- but it lo

NSURLConnection crash

2008-07-24 Thread Sijmen Mulder
I'm experiencing strange crashes with NSURLConnection (EXC_BAD_ACCESS). As far as I know, I'm doing nothing strange. I set up the request, pass it to a connection, and let it start. Then, after a second or two, the crash comes. Note that I'm using garbage collection. I've narrowed it down