I've been building an HTTP client that uses web services to synchronize information between the client and server. I've been using Blocks and NSURLConnection to achieve this on the client side, but I'm getting frequent EXC_BAD_ACCESS crashes in objc_msgSend(). From what I understand, this usually means that a stored block that has fallen off the stack has been called. I think I've coded things correctly to avoid this, but I'm still stuck.

Here is what my code is doing conceptually. It starts by calling "synchronizeWithWebServer". That method invokes "listRootObjectsOnServerWithBlock:" which takes in a block to be called when the method returns.

"listRootObjectsOnServersWithBlock:" initiates a NSURLConnection to the web server asynchronously. It expects a block to be called when it returns. Inside that block I want to be able to execute the original Block (so aptly named 'block').

This is only a simplified version of my code. The real synchronization process is more complex but it's mostly more of the same as what you see below.

Sometimes the code works perfectly, but about 80% of the time it crashes very early on in the routine. It seems to be more vulnerable to crashing when my data set gets larger.

  - (void)synchronizeWithWebServer
  {
       [self listRootObjectsOnServerWithBlock:^(NSArray *results, NSError *error) {

           //Iterate over result objects and perform some other similar routines.
       }];
  }

  - (void)listRootObjectsOnServerWithBlock:(void (^)(NSArray *results, NSError *error))block
  {
       //Create NSURLRequest Here

       //Create connection asynchronously.
       block = [block copy];
       [NSURLConnection sendAsynchronousRequest:urlRequest 
                                          queue:[NSOperationQueue currentQueue]
                              completionHandler:^(NSURLResponse *response, NSData *data, NSError *error){

                       //Parse response from web server (stored in NSData *data)
                       NSArray *results = .....

                       //Call 'block'
                       block(results, error);
                       [block release];
                       }];
   }
link|improve this question
6  
try setting up NSZombies and see which deallocated object is sent a message. – MCannon Nov 11 '11 at 23:11
1  
By golly I think you are on to something with that. Why didn't I think to do that? Let me take some time to look at it now. – Carter Nov 11 '11 at 23:30
2  
feel free to post it as an answer so that you can mark the question as closed. – MCannon Nov 11 '11 at 23:38
2  
Obviously this wasn't the problem (since you've already found the problem), but you should move the [block release] to after the NSURLConnection call, not in the completion handler. The completion handler will automatically retain the block when it is created, so you can release it after that. This will prevent problems if, for some reason, the completion handler gets called twice. – ughoavgfhw Nov 12 '11 at 5:48
3  
In fact, you don't need to copy the block at all. The -sendAsynchronousRequest:queue:completionHandler: method will copy the completion handler, which will recursively copy your block. It will also release it automatically. – kperryua Nov 12 '11 at 6:00
show 6 more comments
feedback

closed as too localized by Anna Lear Dec 14 '11 at 5:51

This question is unlikely to ever help any future visitors; it is only relevant to a small geographic area, a specific moment in time, or an extraordinarily narrow situation that is not generally applicable to the worldwide audience of the internet. See the FAQ for guidance on how to improve it.