Coverity Prevent is a commercial static source code analyzer that looks for errors such as inconsistent NULL checks, dead code, unused return values, missing break statement, etc.

learn more… | top users | synonyms

0
votes
1answer
116 views

Error while compiling a C++ project with devenv using Coverity. (cov-build.exe)

When running a Coverity build I get the following error: Failed to locate msbuild.exe when handling devenv template configuration. Shutting down resident msbuild processes is impossible. Can't find ...
0
votes
1answer
95 views

Can I filter my Coverity filename results using something like a regex?

I'm working with Coverity and I'd like to filter my filename results in my view in a regex style. Is there anything more sophisticated available in coverity apart from: ? - Any single character * - ...
0
votes
0answers
59 views

Coverity - Unwritten field?

Coverity is complaining about following: JMenuItem menuItem; ....... if( getMenuItem() == menuItem) It's complaining about the above line. Does unwritten field mean that the variable has not been ...
1
vote
1answer
512 views

Coverity installation and database setup (cov-install-gui)

I am new to using coverity and this might not be a very challenging question, but I would appreciate it greatly if someone could guide me through the process of setting up the . I first ran the ...
0
votes
0answers
63 views

An unexpected exception with coverity build

I am trying to build my project with coverity. It contains both C++ and Java code. While I do cov-build with build script C++ build goes fine, but java compilation shows the following as shown. If I ...
0
votes
1answer
875 views

Coverity Set Up (Cygwin Warning)?

I am currently trying to run Coverity Prevent and I believe I have everything set up appropriately on my windows 7 build machine. I have run it with AnthillPro and when my code finishes and t gets to ...
1
vote
1answer
215 views

Overflowed return value warning in Coverity

I am getting a coverity static checker tool warning for a piece of code below. double value = 0; std::string origValue("0.50"); value = 0.10 * boost::lexical_cast<double>(origValue); ...
2
votes
3answers
540 views

C++ and coverity issues

MyClass* const Func(const std::string& statename) for this coverity is giving the error Parse warning (PW.USELESS_TYPE_QUALIFIER_ON_RETURN_TYPE) type qualifier on return type is ...
5
votes
3answers
2k views

How to get Coverity static analysis compatible with C++0x standard?

I am using a Wind River Compiler 4 (gcc (C) and g++ (C++)) and it compiles all my projects without any problems. Now I have to use Coverity Static Analysis to check my code. I have configured the ...
-1
votes
1answer
181 views

Coverity reference function inputs for a custom checker

Is there a simple way to take the general arguments of a function (Pointer, Array, Integer) and get the values backing the expression, when writing a custom checker? As in, I match against a function ...
0
votes
3answers
367 views

backing up coverity PostgreSQL database to file

We have the "coverity" tool setup and are trying to find a way to backup the database to a file, it uses I believe PostgreSQL. How can we do this, is it using its own independent installation of ...
0
votes
4answers
549 views

Resource leak during object creation

I have the following code for creation of a node inside a graph. I'm getting resource leak error when I run a static checking tool (coverity). I would appreciate if you can point out how to improve ...
2
votes
1answer
707 views

Coverity Prevent: how to handle “checked return” warning when I deliberately don't check the return?

As the title suggest, for example, in 85% of the situation, I'd like to check the return code of foo(), but sometimes I really don't care about it, but this will raise Coverity warning. What's the ...
4
votes
3answers
607 views

Is underscore allowed in case labels?

In some header file which I can not modify I have the following set of defines: #define FLAG1 (0x0000_0001) #define FLAG2 (0x0000_0002) ... Then, in my ...
12
votes
6answers
1k views

“x = ++x” is it really undefined?

I am using Coverity Prevent on a project to find errors. It reports an error for this expression (The variable names are of course changed): x= (a>= b) ? ++x: 0; The message is: ...
2
votes
1answer
815 views

Silencing false positives in Coverity Prevent

I am using Coverity Prevent on a C++ project. Is there some way of flagging false positives directly in the source code?
2
votes
0answers
292 views

Coverity Prevent 5 for .NET development?

Do you use Coverity Prevent or Coverity Prevent 5 with .NET development? If yes, what are your feelings about it?
3
votes
4answers
695 views

How well does static code analysis work with Spring and other abstractions?

I'm in a situation where I'm required to make at least some effort to remove never-used code from my source code. The general preference is to use a static code analysis tool. We've had great luck ...
1
vote
3answers
328 views

What does HFA stand for in Coverity Prevent?

Coverity Prevent has a checker 'HFA' which is used to identify unused included header files. I understand what it's used for, but I don't understand the abbreviation. What does HFA stand for? It ...
16
votes
3answers
5k views

Coverity for Java static analysis

I'd like to get comments from people who have used or evaluated Coverity for statically analysing Java-code. I know it's popular in C/C++ world, but is it worth spending the money for Java analysis or ...