Cppcheck is an open source tool for static C/C++ code analysis that tries to detect bugs that a C/C++ compiler doesn't see.

learn more… | top users | synonyms

0
votes
1answer
13 views

cppcheck: same expression on both sides maybe wrong

#ifdef TEST #define INVALID_HANDLE_VALUE 0 #else #include <windows.h> #endif int main() { HANDLE hf = 0; if (hf==0 || hf==INVALID_HANDLE_VALUE) {} } above is my test code, when I use ...
0
votes
0answers
38 views

how git get the cppcheck report

Firstly, Cppcheck checks code will come out a result which stored in a file. In Git, the file is in everyone's local computer because Git is a distributed system, Now we want to collect the ...
0
votes
0answers
47 views

Can we add/remove coding standards to CppCheck?

Can we add some of the coding standards which is not defined in Cppheck, or can we remove some of the coding standards defined in Cpppcheck which i does not want to check.
8
votes
1answer
324 views

Rulesets for cppcheck

Cppcheck allows you to create your own rules files, but I don't know how much of cppcheck's functionality is exposed. Is anyone working on a set that would enforce JSF or MISRA rules?
0
votes
0answers
115 views

cppcheck: global analysis parameters?

I'm trying to integrate cppcheck with the C Sonar Plugin. Up to now everything works fine, but I've recently find a problem with a piece of code due to some missing header files. The point is that ...
0
votes
2answers
59 views

Smart pointers in static code analysis

In our code, we are extensively using smart pointers for memory management. We are also using CPPCheck for static analysis. I have noticed that CPPCheck can never find if there are any smart pointer ...
1
vote
1answer
85 views

cppcheck output paths seem wrong

I am trying to use cppcheck to analyze my c++ project. My command looks like this: me@home:trunk/software/cpp/tnoid$ cppcheck -v --enable=all --xml -I ../../../package/build/common/cpp/ -I ...
0
votes
1answer
610 views

Problems using C++ community plugin in sonar. Cppcheck doesn't work

sonar doesn't launch cppcheck when I use sonar-runner. I'm using the last version off all (sonar, c++ community pluguin and sonar-runner) in ubuntu 12.04. If someone has sonar working correctly with ...
1
vote
0answers
214 views

Sending Cppcheck result/report on email from Jenkins using email-ext plugin

I'm trying to send cppcheck report on an email using email-ext plugin from a Jenkins build. So far, only way seems to be by creating a custom template -- jelly or groovy. From this post -- "Can I ...
0
votes
1answer
51 views

cppcheck does not detect resource leak due to include paths

Can anyone plz help? When I was analysing my source code simply via "cppcheck file" it out puts analysis results like Checking ../bst_hal/daemon_rls/src/event_handler.c... Checking ...
1
vote
1answer
230 views

how can i tell cppcheck to skip a header file

cppcheck scans all files in a projectfolder. c:\projectfolder\main.c c:\projectfolder\file.c c:\projectfolder\file.h c:\projectfolder\file_test.cc c:\projectfolder\file_test.cc contains the ...
0
votes
1answer
592 views

cppcheck in SublimeLinter doesn't work

I'm new to sublime text and I'm stuck with a problem - I installed SublimeLinter via Package Control, and installed cppcheck via sudo apt-get install cppcheck (I'm using linux mint 13). SublimeLinter ...
2
votes
0answers
148 views

What's wrong with following jelly script template for cppcheck in email-ext plugin of hudson

What's wrong with following jelly script template for cppcheck in email-ext plugin of hudson. <!-- CppCheck TEMPLATE --> <!--<j:set var="cppClassName" value="CppcheckBuildAction" ...
1
vote
2answers
232 views

CppCheck output to xml file from Powershell

I would like to run CppCheck on our code as part of our build. However, I cannot make it save the output to a file if not executed from a command prompt. From a regular (windows) command prompt, or ...
4
votes
2answers
487 views

Why does Cppcheck not find this obvious array out-of-bounds error?

I installed the Cppcheck tool for static code analysis of my C++ project and got the feeling that it performs poorly. For example, can anyone tell me why Cppcheck is unable to find an array ...
1
vote
1answer
141 views

Looking for a Cppcheck-like tool for Java development

I'm a software tester and developer. My company is starting a partnership with another development team and we need a new tool for static analysis. The new team's previous code is written in Java, so ...
1
vote
4answers
353 views

Integrate Cppcheck with Emacs

Is it possible to integrate Cppcheck with Emacs in a more sophisticated way than simply calling the shell command on the current buffer? I would like Emacs to be able to parse Cppcheck's messages and ...
0
votes
1answer
317 views

What is cppcheck rule-file <pattern> syntax?

I've poked around for a while, and can't find this anywhere. I have found a nice example of a cppcheck rule-file that shows a simple pattern; <?xml version="1.0"?> <rule version="1"> ...
1
vote
1answer
674 views

cannot generate XML output from cppcheck

I am using cppcheck for static analysis of C Code, but cannot seem to get an XML. I require the XML File to be consumed by Jenkins Here is what i have tried so far: runcppcheck.sh #!/bin/sh cd ...
6
votes
3answers
934 views

How could reading numbers using sscanf crash?

Cppcheck has detected a potential problem in a code like this: float a, b, c; int count = sscanf(data, "%f,%f,%f", &a, &b, &c); It says that: "scanf without field width limits can crash ...
0
votes
1answer
559 views

How can I tell cppcheck to ignore certain errors?

i want to be able to write 2 sets of rules: Ruleset which ignores errors like Uninitialized variable variableScope Ruleset which includes ALL , but i can manually ignore one or more rule sets ...
3
votes
1answer
346 views

Static analysis tool for C programs

I'm looking for Static Analysis open-source tool for these, Checking the return value of the function. foobar = Get_FooBar(...); //this function could return null pointer. foobar->property = ...
5
votes
3answers
1k views

scanf Cppcheck warning

Cppcheck shows the following warning for scanf: Message: scanf without field width limits can crash with huge input data. To fix this error message add a field width specifier: %s => %20s %i ...
0
votes
1answer
132 views

How to use .hpi files for vim

I have downloaded a .hpi file for cppcheck as plugin but i don't know how to use. Can anybody help me in this regard. Thanks.
1
vote
1answer
1k views

cppcheck can't find include files

cppcheck can't find even standard headers such as iostream. Any ideas? I am using Ubuntu 11.04 and cppcheck from the repository.
2
votes
3answers
253 views

Can I use cppcheck when I execute :wq in Vim editor for c/c++

I want to override wq/q/w!/w/q! to user defined command along with its functionality. Example : If I use :wq to exit, the command should do static code check of that particular c/c++ file and ...
1
vote
2answers
217 views

For-loop Syntax Error in Sqlite3.c

cppcheck has determined that the following statement produces a syntax error in sqlite3.c: for(i=0; i<db->nDb; i++){ Full function: SQLITE_PRIVATE void sqlite3BtreeLeaveAll(sqlite3 *db){ ...
6
votes
5answers
11k views

c++, usleep() is obsolete, workarounds for Windows/MingW?

I already found out with another question that Windows/MingW doesn't provide the nanosleep() and setitimer() alternatives to the obsolete usleep(). But my goal is to fix all warnings that cppcheck ...
1
vote
1answer
950 views

Code::Blocks, static code analysis included (cppcheck)?

The Cppcheck website tells me that Code::Blocks has Cppcheck built in. The Wikipedia page on IDEs tells me that Code::Blocks has an integrated static code analysis (that would be Cppcheck then, ...
1
vote
3answers
299 views

CppCheck: Variable 'bla' is not assigned a value

running CppCheck over my codebase produces some style warnings. E.g. in void foo(int& x) { x = 0; } void bar() { int y; foo(y); } it gives me Variable 'y' is not assigned a value ...
0
votes
1answer
1k views

how to install any tools gui in linux? [closed]

how to install any cppcheck gui in linux? how to find whether the related packages installed or not in linux?
1
vote
1answer
872 views

How to build cppcheck tool in gcc compiler?

I have downloaded cppcheck tool and build it. Now am facing the problem that cppcheck command not found. Is there any mistake..suggest me the steps.. I tried in gcc compiler as following: > cd ...
6
votes
2answers
668 views

cppcheck thinks I have “Redundant code: Found a statement that begins with numeric constant”

Cppcheck (version 1.46.1) gives the following warning for an enum like this one: enum DATABASE_TYPE { DATABASE_TYPE_UNKNOWN = -1, // <- line of warning DATABASE_TYPE_ORACLE, ...
1
vote
2answers
519 views

A warning with cppcheck, “hides typedef with same name”

This is a cppcheck warning message. Variable 'BUFFER_INFO' hides typedef with same name The BUFFER_INFO is defined as following. typedef struct tagBufferInfo { CRITICAL_SECTION cs; Buffer* ...
4
votes
2answers
258 views

“Socket operation on non-socket” error due to strange syntax

I ran across the error Socket operation on non-socket in some of my networking code when calling connect and spent a lot of time trying to figure out what was causing it. I finally figured out that ...
2
votes
2answers
3k views

How to use cppcheck's inline suppression filter option for C++ code?

I would like to use cppcheck for static code analysis of my C++ code. I learned that I can suppress some kind of warnings with --inline-suppr command. However, I can find what "suppressed_error_id" I ...