mirror of
https://github.com/opnsense/src.git
synced 2026-05-28 04:12:45 -04:00
kgdb: initialize n_type field of nlist entry for kvm_nlist call
kvm_nlist skips lookup for entries that have n_type != N_UNDF. N_UNDF happens to be zero, so n_type typically has a correct value by accident, but not always. Note: jhb has a patch that replaces kvm_nlist use with direct gdb parsing. MFC after: 5 days X-MFC-Note: unless jhb commits kvm_nlist => kgdb_parse change
This commit is contained in:
parent
4f160a1c59
commit
c12959b335
1 changed files with 1 additions and 0 deletions
|
|
@ -58,6 +58,7 @@ kgdb_lookup(const char *sym)
|
|||
{
|
||||
struct nlist nl[2];
|
||||
|
||||
nl[0].n_type = N_UNDF;
|
||||
nl[0].n_name = (char *)(uintptr_t)sym;
|
||||
nl[1].n_name = NULL;
|
||||
if (kvm_nlist(kvm, nl) != 0)
|
||||
|
|
|
|||
Loading…
Reference in a new issue