|
From: David K. <dav...@de...> - 2006-02-26 21:14:01
|
Hi,
The included patch suppresses a large number of errors such as :
==19907== Conditional jump or move depends on uninitialised value(s)
==19907== at 0x4011E5D: (within /lib/ld-2.3.6.so)
==19907== by 0x4006B1E: (within /lib/ld-2.3.6.so)
. . .
on a current Debian unstable x86 system.
If I replace /lib/ld-2.3.6.so with an unstripped version the errors go
away. This leads me to believe that Debian/glibc 2.3.6 based systems
have the same issue that caused this suppression to be added for
Ubuntu/glibc 2.3.5.
* glibc-2.3.supp (Ubuntu-stripped-ld.so) : Make this suppression more
generic so it matches a glibc 2.3.6 based system as well.
Index: glibc-2.3.supp
===================================================================
--- glibc-2.3.supp (revision 5699)
+++ glibc-2.3.supp (working copy)
@@ -576,10 +576,10 @@
{
Ubuntu-stripped-ld.so
Memcheck:Cond
- obj:/lib/ld-2.3.5.so
- obj:/lib/ld-2.3.5.so
- obj:/lib/ld-2.3.5.so
- obj:/lib/ld-2.3.5.so
- obj:/lib/ld-2.3.5.so
+ obj:/lib/ld-2.3.*
+ obj:/lib/ld-2.3.*
+ obj:/lib/ld-2.3.*
+ obj:/lib/ld-2.3.*
+ obj:/lib/ld-2.3.*
}
--
David Kimdon
Devicescape Software
|