value_copy: Assertion `arg->contents != nullptr' failed.
Bug #1971409 reported by
Balika011
This bug affects 20 people
Affects | Status | Importance | Assigned to | Milestone | |
---|---|---|---|---|---|
gdb (Ubuntu) |
Confirmed
|
Medium
|
Unassigned |
Bug Description
When debugging RP2040 with vscode this assert makes gdb crash.
This is a new assert, that wasn't present in gdb 11.
The fix is easy, replace `if (!value_lazy (val))` to `if (!value_lazy (val) && arg->contents != nullptr) `.
Changed in gdb (Ubuntu): | |
importance: | Undecided → Medium |
To post a comment you must log in.
Got the same issue in VSCode using gdb 12.0.90.
I compiled gdb 12.1 and it works.
Can we get it updated to 12.1?