Skip to content

Instantly share code, notes, and snippets.

@torarnv
Created November 9, 2010 11:00
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/668965 to your computer and use it in GitHub Desktop.
Save torarnv/668965 to your computer and use it in GitHub Desktop.
Program received signal EXC_BAD_ACCESS, Could not access memory.
Reason: KERN_INVALID_ADDRESS at address: 0x0000000000000021
0x00007fff80085ef0 in _class_getName ()
(gdb) bt
#0 0x00007fff80085ef0 in _class_getName ()
#1 0x00007fff85117ee8 in NSIsFreedObject ()
#2 0x00000001007bb1c0 in -[AIAbstractListController outlineView:isGroup:] (self=0x116726f10, _cmd=0x100828128, outlineView=0x11671b9f0, item=0x105ea9030) at /Users/torarne/dev/adium/Frameworks/Adium Framework/Source/AIAbstractListController.m:683
#3 0x00000001007bb918 in -[AIAbstractListController outlineView:heightOfRowByItem:] (self=0x116726f10, _cmd=0x7fff884a5794, outlineView=0x11671b9f0, item=0x105ea9030) at /Users/torarne/dev/adium/Frameworks/Adium Framework/Source/AIAbstractListController.m:757
#4 0x00007fff87db285e in -[NSOutlineView _sendDelegateHeightOfRow:] ()
#5 0x00007fff87db26ce in -[NSTableView _uncachedRectHeightOfRow:] ()
#6 0x00007fff87db25b4 in -[_NSTableRowHeightStorage _cacheRowHeightsIntoBucket:bucketFirstRowIndex:lastCacheableRowIndex:] ()
#7 0x00007fff87db24a2 in -[_NSTableRowHeightStorage createAndCacheRowHeightSumsIfNecessary] ()
#8 0x00007fff87db22d9 in -[_NSTableRowHeightStorage computeTableHeight] ()
#9 0x00007fff87dab2a1 in -[NSTableView _minimumFrameSize] ()
#10 0x00007fff87dad85e in -[NSTableView tile] ()
#11 0x00007fff87dcf6f8 in -[NSTableView viewWillDraw] ()
#12 0x00007fff87dcf251 in -[NSView viewWillDraw] ()
#13 0x00007fff87dcf251 in -[NSView viewWillDraw] ()
#14 0x00007fff87dcf251 in -[NSView viewWillDraw] ()
#15 0x00007fff87dcf251 in -[NSView viewWillDraw] ()
#16 0x00007fff87dcf251 in -[NSView viewWillDraw] ()
#17 0x00007fff87dcf251 in -[NSView viewWillDraw] ()
#18 0x00007fff87dce802 in -[NSView _sendViewWillDrawInRect:clipRootView:suppressRecursion:] ()
#19 0x00007fff87d49fb9 in -[NSView displayIfNeeded] ()
#20 0x00007fff87d44ea2 in _handleWindowNeedsDisplay ()
#21 0x00007fff83cc9077 in __CFRunLoopDoObservers ()
#22 0x00007fff83ca4ef4 in __CFRunLoopRun ()
#23 0x00007fff83ca484f in CFRunLoopRunSpecific ()
#24 0x00007fff8370b91a in RunCurrentEventLoopInMode ()
#25 0x00007fff8370b67d in ReceiveNextEventCommon ()
#26 0x00007fff8370b5d8 in BlockUntilNextEventMatchingListInMode ()
#27 0x00007fff87d1a29e in _DPSNextEvent ()
#28 0x00007fff87d19bed in -[NSApplication nextEventMatchingMask:untilDate:inMode:dequeue:] ()
#29 0x00007fff87cdf8d3 in -[NSApplication run] ()
#30 0x00007fff87cd85f8 in NSApplicationMain ()
#31 0x000000010003e9cc in main (argc=0x1, argv=0x7fff5fbfd598) at /Users/torarne/dev/adium/Source/main.m:3
(gdb) f 2
(gdb) l
678 }
679
680 - (BOOL)outlineView:(NSOutlineView *)outlineView isGroup:(AIProxyListObject *)item
681 {
682 #ifdef DEBUG_BUILD
683 if (NSIsFreedObject(item)) {
684 NSLog(@"Attempting to use a freed listobject proxy in %@", NSStringFromSelector(_cmd));
685 }
686 #endif
687 return (!item || ([item.listObject isKindOfClass:[AIListGroup class]]));
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment