This is probably not the correct interpretation of this error.
The Win32 error above is more likely to indicate the actual problem.
Flags
Severity
Success
This code indicates success, rather than an error.
This may not be the correct interpretation of this code,
or possibly the program is handling errors incorrectly.
The following code is in the tableView didSelectRowAtIndexPath if the release is uncommented i get the error: ComicDetailsViewController * comicDetailsViewController = [[ComicDetailsViewController alloc] initWithNibName:@"ComicDetailsViewController" bundle:nil]; comicDetailsViewController.comic = (Comic *)[arrayOfComics objectAtIndex:indexPath.row]; comicDetailsViewController.bLoadPerformances = YES; [self.navigationController pushViewController:comicDetailsViewController animated:YES]; //[comicDetailsViewController release]; The error does not happen right away, it happens once i click [...] read more