Details
-
Bug
-
Resolution: Fixed
-
Not Evaluated
-
Qt Creator 4.10.2, Qt Creator 10.0.2
-
None
Description
When debugging a C programm in qt creator and using gdb 13.1 it seems that char pointers are shown as <not accessible>.
After debugging myself the problem it seems that inside the function hexencode() in the dumper.py file there is no consideration for memoryview.
Adding the following lines seems to resolve it:
if isinstance(s, memoryview):
s = bytes(s)