Commit 2b6e7dad authored by Marcus Meissner's avatar Marcus Meissner Committed by Alexandre Julliard

Elf32_auxv_t.a_un.a_ptr no longer exists in HEAD glibc CVS, use

a_val.
parent 0b352c7f
......@@ -860,8 +860,8 @@ static int is_in_preload_range( const ElfW(auxv_t) *av, int type )
{
for (i = 0; preload_info[i].size; i++)
{
if ((char *)av->a_un.a_ptr >= (char *)preload_info[i].addr &&
(char *)av->a_un.a_ptr < (char *)preload_info[i].addr + preload_info[i].size)
if ((char *)av->a_un.a_val >= (char *)preload_info[i].addr &&
(char *)av->a_un.a_val < (char *)preload_info[i].addr + preload_info[i].size)
return 1;
}
}
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment