mirror of
git://gcc.gnu.org/git/gcc.git
synced 2025-04-04 12:01:06 +08:00
debug/elf: Don't crash if line numbers are not available.
From-SVN: r185124
This commit is contained in:
parent
cc8459239b
commit
060b4284aa
@ -129,7 +129,7 @@ func openExecutable() {
|
||||
// and line number for a PC value.
|
||||
func funcFileLine(pc uintptr, function *string, file *string, line *int) bool {
|
||||
openExecutable()
|
||||
if executable.dwarf == nil {
|
||||
if executable == nil || executable.dwarf == nil {
|
||||
return false
|
||||
}
|
||||
f, ln, err := executable.dwarf.FileLine(uint64(pc))
|
||||
|
Loading…
x
Reference in New Issue
Block a user