Re: NSURLConnection sendSynchronousRequest: crashes since, upgrading to 10.5.7

2009-06-01 Thread Dennis Hartigan-O'Connor
Thanks, Andrew, I believe that Colin Gray got to the bottom of this at Stack Overflow: http://stackoverflow.com/questions/916718/nsurlconnection-crashing-under-10-5-7 Dennis Andrew Farmer wrote: On 27 May 2009, at 18:20, Dennis Hartigan-O'Connor wrote: I have a very similar problem: my

Re: NSURLConnection sendSynchronousRequest: crashes since, upgrading to 10.5.7

2009-06-01 Thread Jeff Johnson
I'm not sure that this is the full story. My app Vienna implements connection:willSendRequest: redirectResponse: at AsyncConnection.m: 396 http://vienna-rss.svn.sourceforge.net/viewvc/vienna-rss/trunk/2.3.0/AsyncConnection.m?view=markup However, I'm seeing crash reports from users on 10.5.7,

Re: NSURLConnection sendSynchronousRequest: crashes since, upgrading to 10.5.7

2009-06-01 Thread Dennis Hartigan-O'Connor
Thanks, Jeff, others are also saying that implementing this method doesn't always fix the problem. Which makes sense: presumably Apple's implementation amounts to return request;, so it is hard to see how that method could be at the root of the problem. I hope everybody is filing bug reports

Re: NSURLConnection sendSynchronousRequest: crashes since, upgrading to 10.5.7

2009-05-31 Thread Andrew Farmer
On 27 May 2009, at 18:20, Dennis Hartigan-O'Connor wrote: I have a very similar problem: my simple program that downloads stock prices has been working fine but intermittently crashes on 10.5.7, whether I use sendSynchronousRequest or stringWithContentsOfURL. For me, too, everything is

Re: NSURLConnection sendSynchronousRequest: crashes since, upgrading to 10.5.7

2009-05-27 Thread Dennis Hartigan-O'Connor
sendSynchronousRequest: crashes since upgrading to10.5.7 To: Cocoa Developers cocoa-dev@lists.apple.com Message-ID: 9dc8f25a-ff9e-46d9-8725-d520d35c2...@greg-web.net Content-Type: text/plain; charset=US-ASCII; format=flowed; delsp=yes After upgrading to 10.5.7 I've been having

NSURLConnection sendSynchronousRequest: crashes since upgrading to 10.5.7

2009-05-14 Thread Greg Hoover
After upgrading to 10.5.7 I've been having intermittent trouble with deallocated objects in NSURLConnections. All of my URL requests are made using sendSynchronousRequest. Everything is fine for about 10-15 minutes, then I get this crash. I am making requests on multiple threads,