Re: Help: How do you start debugging this crashlog?
Re: Help: How do you start debugging this crashlog?
- Subject: Re: Help: How do you start debugging this crashlog?
- From: p3consulting <email@hidden>
- Date: Sun, 20 Jul 2003 08:45:19 +0200
>
This happens upon initial app launch. How do you start debugging to
>
find it's source?
>
>
Thread 0 Crashed:
>
#0 0x9068ba50 in objc_msgSend
>
#1 0x97df221c in NSPopAutoreleasePool
>
#2 0x93161794 in _requiredAEEventHandler
>
You are not using AE, but the OS does, however this problem has nothing
to do with AE
You have allocated an autoreleased object you forget to retain in one
of your init/awakeFromNib or class initialization routines that is
called
very early in your program: may be something related to a splash
screen, the application delegate,
and than you reuse that very same object reference somewhere later in
something like maybe the opening of an Untitled document
(or any other default behavior you have implemented when the
application is launched)
This problem is related to memory management (NSPopAutoreleasePool)
not to AE
Pascal Pochet
P3 Consulting
email@hidden
http://www.p3-consulting.net
_______________________________________________
cocoa-dev mailing list | email@hidden
Help/Unsubscribe/Archives:
http://www.lists.apple.com/mailman/listinfo/cocoa-dev
Do not post admin requests to the list. They will be ignored.