1
0
Fork 0
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:
mostang.com!davidm 2004-04-21 07:24:35 +00:00
parent c2b94e1e46
commit 72e5a3bc17

View file

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