1
0
Fork 0
mirror of https://github.com/tobast/libunwind-eh_elf.git synced 2024-06-30 21:21:45 +02:00

(check_callback): Fix typo:

shared_object_subs -> shared_object_removals.

(Logical change 1.161)
This commit is contained in:
hp.com!davidm 2004-01-24 07:27:00 +00:00
parent d203e1282a
commit c2e7130493

View file

@ -565,10 +565,10 @@ check_callback (struct dl_phdr_info *info, size_t size, void *ptr)
instead and hope nobody runs into stale cache info... */
return 1;
if (info->dlpi_subs == as->shared_object_subs)
if (info->dlpi_subs == as->shared_object_removals)
return 1;
as->shared_object_subs = info->dlpi_subs;
as->shared_object_removals = info->dlpi_subs;
unw_flush_cache (as, 0, 0);
return -1; /* indicate that there were no new removals */
#else