|
From: <sv...@va...> - 2005-07-21 15:25:42
|
Author: tom
Date: 2005-07-21 16:25:04 +0100 (Thu, 21 Jul 2005)
New Revision: 4222
Log:
Add some more intercept rules for ld.so on amd64.
Modified:
trunk/memcheck/mac_replace_strmem.c
Modified: trunk/memcheck/mac_replace_strmem.c
=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=
=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=
=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D
--- trunk/memcheck/mac_replace_strmem.c 2005-07-21 11:49:24 UTC (rev 4221=
)
+++ trunk/memcheck/mac_replace_strmem.c 2005-07-21 15:25:04 UTC (rev 4222=
)
@@ -161,6 +161,7 @@
// Apparently index() is the same thing as strchr()
STRCHR(m_libc_so_6, strchr)
STRCHR(m_ld_linux_so_2, strchr)
+STRCHR(m_ld_linux_x86_64_so_2, strchr)
STRCHR(m_libc_so_6, index)
STRCHR(m_ld_linux_so_2, index)
STRCHR(m_ld_linux_x86_64_so_2, index)
@@ -441,8 +442,9 @@
return dst; \
}
=20
-STPCPY(m_libc_so_6, stpcpy)
-STPCPY(m_ld_linux_so_2, stpcpy)
+STPCPY(m_libc_so_6, stpcpy)
+STPCPY(m_ld_linux_so_2, stpcpy)
+STPCPY(m_ld_linux_x86_64_so_2, stpcpy)
=20
=20
#define MEMSET(soname, fnname) \
|