Confusing double free error message/memory leak in iPhone app
问题 EDIT - added .h file I'm having difficulty trying to find the cause of a double free error. Steps taken to solve 1) Used the Zombies tool. Zombies reports that tid is being double freed 2) Set a breakpoint on malloc_error_break. This identifitied the following code segment as faulty: - (void)viewWillDisappear:(BOOL)animated { [super viewWillDisappear:animated]; [connection release]; [ldestination release]; [ldeparts_from release]; [ltime release]; [lcs_id release]; /// It breaks here