1
0
Fork 0
mirror of https://github.com/tobast/libunwind-eh_elf.git synced 2024-09-27 17:09:29 +02: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:
Joel Brobecker 2011-06-15 20:07:08 -04:00 committed by Arun Sharma
parent e003e44a37
commit 8d991d9258

View file

@ -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;