On Thu, Nov 13, 2008 at 9:46 AM, Robert Monaghan <[EMAIL PROTECTED]> wrote: > Hi Everyone.. > > I have a really weird problem with my basic application. > From time to time, on only a very few machines, (running 10.5.5), my > application crashes when a user clicks on a button. It reports a > EXC_BAD_ACCESS. Here is the crash report: > > Code Type: X86 (Native) > Parent Process: launchd [71] > > Date/Time: 2008-11-12 15:47:47.776 +0100 > OS Version: Mac OS X 10.5.5 (9F33) > Report Version: 6 > > Exception Type: EXC_BAD_ACCESS (SIGBUS) > Exception Codes: KERN_PROTECTION_FAILURE at 0x0000000000000000 > Crashed Thread: 0 > > Thread 0 Crashed: > 0 ...gluetools.GlueTools_KeyUtil 0x00031b9a oefst23_ + 4 > 1 com.apple.AppKit 0x9593fb03 -[NSApplication > sendAction:to:from:] + 112 > > Ideas??
It looks like it is crashing in your code not in AppKit code (the backtrace may be a little confused if a tail-call optimization is taking place). It appears that something is attempting to access a NULL pointer in your code. Use atos and/or gdb to understand what is going on at/around 0x0031b9a in your application (you hopefully have a symboled version of what you shipped to customers). Review the following for information on how to work with a crash report log... http://developer.apple.com/technotes/tn2004/tn2123.html -Shawn _______________________________________________ Cocoa-dev mailing list ([email protected]) Please do not post admin requests or moderator comments to the list. Contact the moderators at cocoa-dev-admins(at)lists.apple.com Help/Unsubscribe/Update your Subscription: http://lists.apple.com/mailman/options/cocoa-dev/archive%40mail-archive.com This email sent to [EMAIL PROTECTED]
