Hello, I'm running valgrind on my program and I get a report of a jump over a test on uninitialized data. According to a post on stackoverflow (see link at the bottom) this is a known issue and should be addressed by the distro's maintainers. I'm reporting the problem here hoping it's the right place. It's not so important, but let me know if it's worth opening a bug.

mic




http://stackoverflow.com/questions/11506370/valgrind-reports-unitialized-values-on-empty-c-program

==9308== Conditional jump or move depends on uninitialised value(s)
==9308==    at 0x4017B46: index (in /lib64/ld-2.17.so)
==9308==    by 0x4007AB2: expand_dynamic_string_token (in /lib64/ld-2.17.so)
==9308==    by 0x40083A4: _dl_map_object (in /lib64/ld-2.17.so)
==9308==    by 0x400187D: map_doit (in /lib64/ld-2.17.so)
==9308==    by 0x400EA25: _dl_catch_error (in /lib64/ld-2.17.so)
==9308==    by 0x4001156: do_preload (in /lib64/ld-2.17.so)
==9308==    by 0x4003A5F: dl_main (in /lib64/ld-2.17.so)
==9308==    by 0x4015367: _dl_sysdep_start (in /lib64/ld-2.17.so)
==9308==    by 0x4004F20: _dl_start (in /lib64/ld-2.17.so)
==9308==    by 0x4001697: ??? (in /lib64/ld-2.17.so)
==9308==
==9308== Conditional jump or move depends on uninitialised value(s)
==9308==    at 0x4017B4B: index (in /lib64/ld-2.17.so)
==9308==    by 0x4007AB2: expand_dynamic_string_token (in /lib64/ld-2.17.so)
==9308==    by 0x40083A4: _dl_map_object (in /lib64/ld-2.17.so)
==9308==    by 0x400187D: map_doit (in /lib64/ld-2.17.so)
==9308==    by 0x400EA25: _dl_catch_error (in /lib64/ld-2.17.so)
==9308==    by 0x4001156: do_preload (in /lib64/ld-2.17.so)
==9308==    by 0x4003A5F: dl_main (in /lib64/ld-2.17.so)
==9308==    by 0x4015367: _dl_sysdep_start (in /lib64/ld-2.17.so)
==9308==    by 0x4004F20: _dl_start (in /lib64/ld-2.17.so)
==9308==    by 0x4001697: ??? (in /lib64/ld-2.17.so)

Reply via email to