mirror of
https://github.com/tobast/libunwind-eh_elf.git
synced 2024-11-15 20:58:13 +01:00
Fix call to maps_next in _UPT_get_dyn_info_list_addr.c
A previous change reduced the number of arguments that this function tasks, but one call at least did not get updated, resulting in a build failure on ia64-linux. This patch fixes it.
This commit is contained in:
parent
e003e44a37
commit
8d991d9258
1 changed files with 1 additions and 1 deletions
|
@ -42,7 +42,7 @@ get_list_addr (unw_addr_space_t as, unw_word_t *dil_addr, void *arg,
|
|||
int count = 0;
|
||||
|
||||
maps_init (&mi, ui->pid);
|
||||
while (maps_next (&mi, &lo, &hi, &off, path, sizeof (path)))
|
||||
while (maps_next (&mi, &lo, &hi, &off))
|
||||
{
|
||||
if (off)
|
||||
continue;
|
||||
|
|
Loading…
Reference in a new issue