Skip to content

Instantly share code, notes, and snippets.

@JimRoepcke
Created December 8, 2010 04:31
Show Gist options
  • Save JimRoepcke/732885 to your computer and use it in GitHub Desktop.
Save JimRoepcke/732885 to your computer and use it in GitHub Desktop.
Program received signal: “EXC_BAD_ACCESS”. (gdb) p/x $eax $1 = 0xfe15980
Happens while randomly scrolling a table view in the simulator. Both alloc and free are not in my code. Is this a bug in Apple's code or am I missing something?
ALLOC 0xfe15980-0xfe15997 [size=24]: thread_a001a500 |start | main | UIApplicationMain | GSEventRun | GSEventRunModal | CFRunLoopRunInMode | CFRunLoopRunSpecific | __CFRunLoopRun | __CFRunLoopDoSource1 | __CFRUNLOOP_IS_CALLING_OUT_TO_A_SOURCE1_PERFORM_FUNCTION__ | mshMIGPerform | _XCopyParameterizedAttributeValue | _AXXMIGCopyParameterizedAttributeValue | _copyParameterizedAttributeValueCallback | _createAXUIElementsFromUIElements | _appendVendedAXElementsFromUIElements | _addAXElementsToArrayFromObject | _appendChildrenToArrayStartingAtIndex | -[UITableViewCellAccessibilityElement isAccessibilityElement] | -[UITableViewCellAccessibilityElement tableViewCell] | -[UITableViewCellAccessibility(SafeCategory) _accessibilityReuseChildren:forMockParent:] | -[UITableViewCellAccessibility(SafeCategory) _accessibilityInternalData] | -[_AXTableViewCellInternal init] | -[__NSPlaceholderArray initWithCapacity:] | +[__NSArrayM __new::] | __CFAllocateObject2 | class_createInstance | _internal_class_createInstanceFromZone | calloc | malloc_zone_calloc
----
FREE 0xfe15980-0xfe15997 [size=24]: thread_a001a500 |start | main | UIApplicationMain | GSEventRun | GSEventRunModal | CFRunLoopRunInMode | CFRunLoopRunSpecific | __CFRunLoopRun | __CFRunLoopDoSource1 | __CFRUNLOOP_IS_CALLING_OUT_TO_A_SOURCE1_PERFORM_FUNCTION__ | mshMIGPerform | _XCopyElementAtPosition | _AXXMIGCopyElementAtPosition | _copyElementAtPositionCallback | -[UIView(UIViewAccessibility) _accessibilityHitTest:withEvent:] | -[UIView(UIViewAccessibility) __accessibilityHitTest:withEvent:] | -[UIView(UIViewAccessibility) _accessibilityHitTest:withEvent:] | -[UIView(UIViewAccessibility) __accessibilityHitTest:withEvent:] | -[UIView(UIViewAccessibility) _accessibilityHitTest:withEvent:] | -[UIView(UIViewAccessibility) __accessibilityHitTest:withEvent:] | -[UIView(UIViewAccessibility) _accessibilityHitTest:withEvent:] | -[UIView(UIViewAccessibility) __accessibilityHitTest:withEvent:] | -[UITableViewAccessibility(Accessibility) _accessibilityHitTest:withEvent:] | -[UIView(UIViewAccessibility) __accessibilityHitTest:withEvent:] | -[UITableViewCellAccessibility(SafeCategory) _accessibilityHitTest:withEvent:] | -[UITableTextAccessibilityElement accessibilityFrame] | -[UITableViewCellAccessibilityElement tableViewCell] | -[_AXTableViewCellInternal dealloc] | -[__NSArrayM dealloc] | -[NSObject(NSObject) dealloc] | _internal_object_dispose | free
@eboto
Copy link

eboto commented Jan 25, 2011

Haha don't worry it's a common vice =). I spent some time analyzing the table view controller that produces this error and couldn't find any errors.

I've therefore decided to forcibly ignore the issue unless I can replicate it on the device =)

Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment