accessMoved
Access of moved variable.
C and C++ are really performant languages and can be very error-prone. We all had core dumps and made pointer arithmetic errors! Thankfully, Codiga has hundreds of static analysis rules to flag potential errors in your C/C++ code, automate code reviews and merge with confidence.
Access of moved variable.
Obsolete function 'alloca' called. In C99 and later it is recommended to use a variable length array instead.
Array access out of bounds with a conditions
Obsolete function 'asctime_s' called. It is recommended to use 'strftime' instead.
Assert statement calls a function which may have desired side effects: 'IsAddressInSegment'.
Assert statement modifies variable
Comparison of a boolean expression with an integer other than 0 or 1.
Detect unused variables
Condition is redundant or value is derefenced
Catching exception in destructor
Function not called with the right arguments
Obsolute function gets() called
Identical condition and return expression
Identical inner 'return' condition is always true.
Return value not used
Logical conjunction always evaluates to false
Integer overflow with condition
Format string conversion error
Invalid formatter for float
Invalid formatter for signed long long
Invalid formatter for unsigned int
Invalid scanf
Invalid scanf for int
Invalid test for overflow
Direct string comparison. Compare with strcmp() instead
Iterators to containers from different expressions
Negative index access
Class does not have a copy constructor which is recommended since it has dynamic memory/resource allocation(s).
Class does not have a operator= which is recommended since it has dynamic memory/resource allocation(s).
Either the condition is redundant or there is overflow in pointer subtraction.
Either the condition is redundant or there is possible null pointer dereference
The address of local variable might be accessed at non-zero index.
operator=' should check for assignment to self to avoid problems with dynamic memory.
Member variable is not assigned a value
Opposite inner 'return' condition leads to a dead code block.
Size of pointer used instead of size of its data.
Variable is reassigned a value before the old one has been used
Repositioning operation performed on a file opened in append mode has no effect.
Redundant assignment of variable to itself.
Expression can have a negative value. That is converted to an unsigned value and used in an unsigned calculation.
Calculation inside sizeof().
Division by result of sizeof(). memset() expects a size in bytes
Unnecessary comparison of static strings.
Member variable not initialized in the constructor.
Member private variable is not initialized in the constructor.
Assignment of function parameter has no effect outside the function. Did you forget dereferencing it?
Ineffective call of function 'empty()'. Call 'clear()' instead.
Dynamic binding is not used.
Mismatching bitmasks.
Using std::move for returning object by-value from function will affect copy elision optimization
We use cookies to improve your site experience, including analytics cookies to understand how you use our product and design better experiences. Please read our Cookie Policy.