vote up 11 vote down star
14

I'm interested in a free tool that can statically check my C++ code like Lint does. Any hints?

flag

79% accept rate

6 Answers

vote up 13 vote down check

Try cppcheck, found here: http://cppcheck.wiki.sourceforge.net/

Here's a sampling of some of the checks it can perform or that I've used it for:

  • Array indices out of bounds
  • Memory/resource leaks
  • Improper new/delete
  • Failure to put virtual destructors on derived classes
  • Mismatching allocation and deallocation
  • Deallocating a deallocated pointer
  • Using variable after it is deallocated / released
  • Size mismatches
  • Invalid radix in call to strtol or strtoul
  • Overlapping data buffers
  • Unsigned division; result may be wrong
  • Unusual pointer arithmetic
  • Returning pointer to local array variable
  • Same iterator is used with two containers
  • Dangerous usage of erase
  • After pushback or pushfront, iterator may be invalid
  • Buffer overruns
  • Dangerous usage of strncat, possible buffer overrun
link|flag
1  
+1 for CppCheck. Great tool! Just beware that it always returns a non-zero code if it detects any issues (even style if they're configured). If you're using an automated build system this can mark builds as failed. – MattyT Mar 10 at 23:55
vote up 5 vote down

Perhaps a list like this is what you're looking for:

http://en.wikipedia.org/wiki/List_of_tools_for_static_code_analysis

It looks like you'll get the most use out of Splint or Uno .

link|flag
vote up 2 vote down

You might want to check out this project:

  • Inspirel Vera++ based on user defined rules (written in scripting language, some time ago only Tcl)

And few not free ones:

link|flag
vote up 1 vote down

This SO question has relevant answers: What is the Best Command Line Tool to Clean Up Code?

link|flag
vote up 1 vote down

I recently read about DeHydra and Pork used by Mozilla, although I have not tried it myself.

link|flag
vote up 0 vote down

splint ?

link|flag
splint gets confused by "newer" syntax, where "newer" is C++ conventions that have been back-ported to C within the last 10 years. – Ryan Graham Mar 10 at 20:18
Upps, so splint is c only? – Johan Mar 10 at 20:46

Your Answer

Get an OpenID
or

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