code-debug icon indicating copy to clipboard operation
code-debug copied to clipboard

unable to expand linked lists

Open GitMensch opened this issue 3 years ago • 0 comments

Similar issue as #229, here with a linked list.

The variable was shown as "h Object@address", the child was shown as "next Object@address" (so the dereferencing did work. When checking the output the extension asked for *h to get to the first child - which is the correct thing to do; but when asking for h->next child's the extension asked for **h->next.

I guess that's an easy fix - but I actually have no idea where to patch this (and still can't debug the debug extension, doing so only runs it but does not do any debugging).

GitMensch avatar Mar 04 '22 16:03 GitMensch