vote up 4 vote down star
1

Hello, Are there any known false positives with Valgrind?

(myself I get a 'Conditional jump or move depends on uninitialised value(s)' with the 'fmemopen' function, writing in 'c' and gcc, can I be sure it's real?)

EDIT: are there known issues that are not in the suppression files? Are there some things one can do in a program, that are not really Errors but Valgrind will say they are? if there are known issues, a list would be nice..

flag

3 Answers

vote up 4 vote down check

Yes, there are false positives with Valgrind, that's why it has suppression files for particular glibc and gcc versions, for example. The false positives may arise if you are using older valgrind with newer gcc and glibc, i.e., valgrind 3.3 with glibc 2.9.

Having said that, you still have to look into issue and find out if it is really a false positive (if that turns out to be the case, you can write a suppression for it yourself) or is it a real bug in your program.

There is no quick and easy way to say what is going on here, but in this case I'd suspect that you are passing uninitialized value from your code to library code. Try Valgrind option --track-origins=yes. It will show where the uninitialized value came from. If it is your code, probably you should initialize it. If it's inside library, it could be the false positive or, still, bad values of library call arguments might be causing it, so check those.

link|flag
How can I really find out if it's a false positive? – Liran Orevi Apr 28 at 8:12
I have added some pointers to my answer, hopefully it helps. – kastauyra Apr 28 at 9:15
I would say assume that all reported issues actually are issues until you have verified undoubtedly that it is. Its easy to dismiss something as a false positive or a bug in another library or whatever when the issue is, in fact, a real issue in your own code. Remember: select is probably not broken ;-) Of course, there will be cases when it really is a false positive... – Dan Apr 28 at 13:16
Yes, definitely. Assume it is your bug unless you can prove otherwise :) – kastauyra Apr 28 at 13:18
Thanks for the --track-origins=yes , had to upgrade version to use it. – Liran Orevi Apr 29 at 14:24
show 2 more comments
vote up 1 vote down

Wasn't the Debian SSL thing motivated by fixing some false positives with Valgrind?

link|flag
vote up 2 vote down

Valgrind comes with some default error suppression, but they are by no means covering all libraries.

The error-checking tools detect numerous problems in the base libraries, such as the GNU C library, and the X11 client libraries, which come pre-installed on your GNU/Linux system. You can't easily fix these, but you don't want to see these errors (and yes, there are many!) So Valgrind reads a list of errors to suppress at startup. A default suppression file is created by the ./configure script when the system is built.

You can create your own error suppressions that you know are irrelevant to your code.

link|flag

Your Answer

Get an OpenID
or

Not the answer you're looking for? Browse other questions tagged or ask your own question.