Skip to content

Instantly share code, notes, and snippets.

@torarnv
Created November 9, 2010 14:57
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save torarnv/669188 to your computer and use it in GitHub Desktop.
Save torarnv/669188 to your computer and use it in GitHub Desktop.
Program received signal EXC_BAD_ACCESS, Could not access memory.
Reason: 13 at address: 0x0000000000000000
0x00007fff80085ef0 in _class_getName ()
(gdb) bt 10
#0 0x00007fff80085ef0 in _class_getName ()
#1 0x00007fff85117ee8 in NSIsFreedObject ()
#2 0x00000001007bb0f5 in -[AIAbstractListController outlineView:isItemExpandable:] (self=0x10745dd30, _cmd=0x7fff8842bd47, outlineView=0x107452fa0, item=0x1186621f0) at /Users/torarne/dev/adium/Frameworks/Adium Framework/Source/AIAbstractListController.m:672
#3 0x00007fff87db11db in -[NSOutlineView _dataSourceIsItemExpandable:] ()
#4 0x00007fff87db104e in loadItemEntryLazyInfoIfNecessary ()
#5 0x00007fff87db29dc in -[NSOutlineView itemAtRow:] ()
#6 0x00007fff87db2837 in -[NSOutlineView _sendDelegateHeightOfRow:] ()
#7 0x00007fff87db26ce in -[NSTableView _uncachedRectHeightOfRow:] ()
#8 0x00007fff87db25b4 in -[_NSTableRowHeightStorage _cacheRowHeightsIntoBucket:bucketFirstRowIndex:lastCacheableRowIndex:] ()
#9 0x00007fff87db24a2 in -[_NSTableRowHeightStorage createAndCacheRowHeightSumsIfNecessary] ()
#10 0x00007fff87db22d9 in -[_NSTableRowHeightStorage computeTableHeight] ()
#11 0x00007fff87dab2a1 in -[NSTableView _minimumFrameSize] ()
#12 0x00007fff87dad85e in -[NSTableView tile] ()
#13 0x00007fff87db2cae in -[NSTableView _rectOfRowAssumingRowExists:] ()
#14 0x00007fff87db2c3a in -[NSTableView rectOfRow:] ()
#15 0x00007fff87db2ab3 in -[NSOutlineView rectOfRow:] ()
(More stack frames follow...)
(gdb) f 2
#2 0x00000001007bb0f5 in -[AIAbstractListController outlineView:isItemExpandable:] (self=0x10745dd30, _cmd=0x7fff8842bd47, outlineView=0x107452fa0, item=0x1186621f0) at /Users/torarne/dev/adium/Frameworks/Adium Framework/Source/AIAbstractListController.m:672
672 if (NSIsFreedObject(item)) {
(gdb) l
667 }
668
669 - (BOOL)outlineView:(NSOutlineView *)outlineView isItemExpandable:(AIProxyListObject *)item
670 {
671 #ifdef DEBUG_BUILD
672 if (NSIsFreedObject(item)) {
673 NSLog(@"Attempting to use a freed listobject proxy in %@", NSStringFromSelector(_cmd));
674 }
675 #endif
676 return (!item || ([item.listObject conformsToProtocol:@protocol(AIContainingObject)] &&
(gdb)
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment