go-delve / delve

Delve is a debugger for the Go programming language.
MIT License
22.38k stars 2.13k forks source link

pkg/proc: defend better against missing DWARF #3695

Closed derekparker closed 3 months ago

derekparker commented 3 months ago

The scope.Locals function did not have any guard checks against missing DWARF information. This patch adds a check, which likely will need to be added to other functions as well.

Fixes #3694