|
From: Julian S. <js...@ac...> - 2008-08-20 07:16:05
|
> for every one of the sprintf calls valgrind says > > Conditional jump or move depends on uninitialised value(s) > ==28593== at 0x43820E5: vfprintf (in /lib/libc-2.6.1.so) > ==28593== by 0x439E91B: vsprintf (in /lib/libc-2.6.1.so) > ==28593== by 0x438A42D: sprintf (in /lib/libc-2.6.1.so) > [...] > thanks for any help Check out and build the SVN trunk valgrind, as described at http://valgrind.org/downloads/repository.html Then run the new Valgrind with --track-origins=yes. This will tell you where the uninitialised data is coming from. J |