From: Julian Seward Date: Wed, 16 Jul 2003 19:59:59 +0000 (+0000) Subject: Do the symbol substitution game for glibc-2.2.93 too (Red Hat 8). X-Git-Tag: svn/VALGRIND_2_0_0~24 X-Git-Url: http://git.ipfire.org/gitweb.cgi?a=commitdiff_plain;h=b3ff4b514acae2339b56e033f3468c93b2188d74;p=thirdparty%2Fvalgrind.git Do the symbol substitution game for glibc-2.2.93 too (Red Hat 8). git-svn-id: svn://svn.valgrind.org/valgrind/trunk@1762 --- diff --git a/coregrind/vg_symtab2.c b/coregrind/vg_symtab2.c index 797f2ec8bd..329434d703 100644 --- a/coregrind/vg_symtab2.c +++ b/coregrind/vg_symtab2.c @@ -2397,7 +2397,8 @@ Int VG_(setup_code_redirect_table) ( void ) si_libc = si_pth = NULL; for (si = segInfo; si != NULL; si = si->next) { - if (VG_(strstr)(si->filename, "/libc-2.3.1.so") + if (VG_(strstr)(si->filename, "/libc-2.2.93.so") + || VG_(strstr)(si->filename, "/libc-2.3.1.so") || VG_(strstr)(si->filename, "/libc-2.3.2.so") || VG_(strstr)(si->filename, "/libc.so")) si_libc = si;