Skip to content

Instantly share code, notes, and snippets.

@dwaite
Forked from anonymous/gist:45113
Created January 9, 2009 17:02
Show Gist options
  • Save dwaite/45175 to your computer and use it in GitHub Desktop.
Save dwaite/45175 to your computer and use it in GitHub Desktop.
Filtering out the data I think is irrelevant, it looks like CoreData is being used for synchronizing bookmarks (rss feeds?) into sqllite, and has some internal error fetching. SIGBUS normally indicates a misaligned memory problem, but it looks like it is using an index as a pointer, or using an index against a null pointer (failure at 0x10).
Based on method names, I would guess this is an error accessing ~/Library/Mail/AvailableFeeds
I have seen a few issues with Mail when safari 4 betas are installed, the older webkit bundled with these has issues that are fixed with newer releases. However, your version string makes me think you are still using the shipping webkit.
-DW
Exception Type: EXC_BAD_ACCESS (SIGBUS)
Exception Codes: KERN_PROTECTION_FAILURE at 0x0000000000000010
Thread 11 Crashed:
0 com.apple.CoreData 0x92320ff5 newFetchedRowsForFetchPlan_MT + 1349
1 com.apple.CoreData 0x92355fb1 -[NSSQLCore fetchRowForObjectID:] + 641
2 com.apple.CoreData 0x9234b3fd -[NSSQLCore retainedDataForObjectID:withContext:] + 301
3 com.apple.CoreData 0x92351038 -[NSPersistentStoreCoordinator(_NSInternalMethods) _conflictsWithRowCacheForObject:andStore:] + 136
4 com.apple.CoreData 0x9232f34c -[NSPersistentStoreCoordinator(_NSInternalMethods) _checkRequestForStore:originalRequest:andOptimisticLocking:] + 1036
5 com.apple.CoreData 0x92319329 -[NSPersistentStoreCoordinator(_NSInternalMethods) executeRequest:withContext:] + 3001
6 com.apple.CoreData 0x9232b805 -[NSManagedObjectContext save:] + 1333
7 com.apple.MessageFramework 0x0038745f -[BookmarksManager saveTransientFeedChanges] + 367
8 com.apple.Mail.Syncer 0x17fd275e 0x17fbf000 + 79710
9 com.apple.syncservices 0x90463237 -[ISyncConcreteSessionDriver _finishSession] + 258
10 com.apple.syncservices 0x9043e2dd -[ISyncConcreteSessionDriver _sync:] + 253
11 com.apple.syncservices 0x904d7876 -[ISyncConcreteSessionDriver _startAsynchronousSyncWorker] + 425
12 com.apple.Foundation 0x967db7ed -[NSThread main] + 45
13 com.apple.Foundation 0x967db394 __NSThread__main__ + 308
14 libSystem.B.dylib 0x94892095 _pthread_start + 321
15 libSystem.B.dylib 0x94891f52 thread_start + 34
Binary Images:
x90322000 - 0x903e0fff com.apple.WebKit 5525.27 (5525.27.1) <a15e548666c9a463d61be1f114b2fa27> /System/Library/Frameworks/WebKit.framework/Versions/A/WebKit
0x949c8000 - 0x94a4fff7 libsqlite3.0.dylib ??? (???) <eeedc8bf6881ac9f2c1954b1c8037720> /usr/lib/libsqlite3.0.dylib
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment