News:

When registered with our forums, feel free to send a "here I am" post here to differ human beings from SPAM bots.

Main Menu

how to watch the value of an array in Nightly Debug Branch?

Started by facat, April 09, 2011, 08:24:26 PM

Previous topic - Next topic

facat

i was using the nightly debug branch of CB. i added my interesting array to the watch window, ticked the "Watch as array" and set the count. However it said "Cannot access memory at address 0x0". how can i see the value of my array?

Jenna


facat

Quote from: jens on April 09, 2011, 08:55:45 PM
Are you sure you try to watch a valid array ?

yes, i tried to watch a dynamically allocated array.

oBFusCATed

What is the type of the array?
Are you sure that the pointer is not pointing to NULL?
GDB is telling you just this:)
(most of the time I ignore long posts)
[strangers don't send me private messages, I'll ignore them; post a topic in the forum, but first read the rules!]

facat

Quote from: oBFusCATed on April 10, 2011, 03:33:23 AM
What is the type of the array?
Are you sure that the pointer is not pointing to NULL?
GDB is telling you just this:)
ok. it was solved. i made a mistake. thk you.