mirror of
https://github.com/opnsense/src.git
synced 2026-05-28 04:12:45 -04:00
Fix "Corrupted DWARF expression" from (k)gdb.
Google turned up Debian bug 405116, which describes the problem in sufficient detail to identify the overflowing variables. MFC after: 1 week
This commit is contained in:
parent
1f3d1b1181
commit
448ba34319
1 changed files with 2 additions and 2 deletions
|
|
@ -38,7 +38,7 @@ struct dwarf2_locexpr_baton
|
|||
unsigned char *data;
|
||||
|
||||
/* Length of the location expression. */
|
||||
unsigned short size;
|
||||
unsigned long size;
|
||||
|
||||
/* The objfile containing the symbol whose location we're computing. */
|
||||
struct objfile *objfile;
|
||||
|
|
@ -54,7 +54,7 @@ struct dwarf2_loclist_baton
|
|||
unsigned char *data;
|
||||
|
||||
/* Length of the location list. */
|
||||
unsigned short size;
|
||||
unsigned long size;
|
||||
|
||||
/* The objfile containing the symbol whose location we're computing. */
|
||||
/* Used (only???) by thread local variables. The objfile in which
|
||||
|
|
|
|||
Loading…
Reference in a new issue