mirror of
https://github.com/tobast/libunwind-eh_elf.git
synced 2024-12-23 20:03:43 +01:00
(ia64_validate_cache): Call ia64_local_validate_cache() only if
we're really dealing with the local address space. Duh. (Logical change 1.209)
This commit is contained in:
parent
c2b94e1e46
commit
72e5a3bc17
1 changed files with 1 additions and 1 deletions
|
@ -709,7 +709,7 @@ HIDDEN void
|
||||||
ia64_validate_cache (unw_addr_space_t as, void *arg)
|
ia64_validate_cache (unw_addr_space_t as, void *arg)
|
||||||
{
|
{
|
||||||
#ifndef UNW_REMOTE_ONLY
|
#ifndef UNW_REMOTE_ONLY
|
||||||
if (ia64_local_validate_cache (as, arg) == 1)
|
if (as == unw_local_addr_space && ia64_local_validate_cache (as, arg) == 1)
|
||||||
return;
|
return;
|
||||||
#endif
|
#endif
|
||||||
|
|
||||||
|
|
Loading…
Reference in a new issue