erro estranho do GDB incapaz de rastrear

Estou recebendo esse erro estranho no gdb e não consigo rastrear a linha exata do código para rastrear o bug. Alguém sabe sobre esse tipo de bug? Aqui está o que eu recebo em gdb

*** -[CALayer sublayers]: message sent to deallocated instance 0x911c2a0
(gdb) po 0x911c2a0
Program received signal SIGTRAP, Trace/breakpoint trap.
0x020993a7 in ___forwarding___ ()
The program being debugged was signaled while in a function called from GDB.
GDB has restored the context to what it was before the call.
To change this behavior use "set unwindonsignal off"
Evaluation of the expression containing the function (_NSPrintForDebugger) will be   abandoned.
(gdb) info symbol 0x911c2a0
No symbol matches 0x911c2a0.
(gdb) 

questionAnswers(4)

yourAnswerToTheQuestion