Comment 2 for bug 986611

Revision history for this message
Hans Joachim Desserud (hjd) wrote :

Seems cppcheck 1.55 was recently released, so I generated a new report with that based on the latest revision (r6411). Some hightlights from the report:

* Found a couple of memory leaks...
* ...and some variables nulled, but not freed
* usleep is obsolete
* It notes some places where replacement functions which are recommended for threadsafe applications
* Various variables not initialized in the constructor.
* Unused variables (some of these seem like they could be false positives to me, so please check those carefully if you intend to fix them)
* Variables passed as value when they could have been passed as value instead of reference
* Exceptions caught as values
* many more...