I am getting error code like follows

(gdb) continue
Current language:  auto; currently objective-c
(gdb) continue
(gdb) continue
(gdb) continue
2011-11-08 17:31:53.156 OnContact[2849:207] *** -[CFString release]: message sent to             deallocated instance 0x4cf2eb0
(gdb) continue
Program received signal:  “SIGKILL”.
(gdb)

Can anybody help me finding out the line number where error had occured

Thanks

link|improve this question

63% accept rate
feedback

1 Answer

You should enable NSZombie, that is designed to find such errors. See here

link|improve this answer
I found that using NSZombie will disgard automatically releasing of memory, and you have to write code to release every variable. In my case I don't want to do all those work and just to findout the root variable of cause, do you have any other idea? – Imran Rizvi Nov 10 '11 at 7:56
feedback

Your Answer

 
or
required, but never shown

Not the answer you're looking for? Browse other questions tagged or ask your own question.