user400579
user400579

Reputation: 11

How to look variable at a pointer location in GDB?

[ipad application] error message at console

***** -[CFSet release]: message sent to deallocated instance 0xbdd9930 **

Above is the exception in GDB console, in my iPad Application, I want to see what variable or object is getting released how to do that ?

Upvotes: 1

Views: 106

Answers (1)

Henry Balanon
Henry Balanon

Reputation: 51

Looks like you're over-releasing either an NSSet or NSArray. What you can do to monitor the addresses is use the Debugger window under Run --> Debugger.

Upvotes: 1

Related Questions