-
Bug
-
Resolution: Done
-
Not Evaluated
-
Qt Creator 3.0.0, Qt Creator 3.6.0
-
None
-
Windows 7, MinGW/gdb
Open a memory editor for a variable
Select a pointer and try jumping to it.
The addresses to the left are modified according to the selection, but the contents of the window is not updated.
Log attached for the following program, opening a memory editor for foo then selecting the address it contains and jump to it:
#include <stdio.h> int main() { const char *foo = "foo"; printf(foo); // BREAK_HERE return 0; }