index
:
mana/paranucker
master
Paranoid static code analyzer for C/C++ Regular Users should NOT download this.
root
summary
refs
log
tree
commit
diff
log msg
author
committer
range
path:
root
/
src
/
analysis
Age
Commit message (
Expand
)
Author
Files
Lines
2015-08-04
Return from COMPOUND_EXPR numeric result.
Andrei Karas
1
-0
/
+4
2015-08-04
Add numeric value in node calculation.
Andrei Karas
5
-8
/
+109
2015-08-03
Fix false positives in IF_STMT/WHILE_STMT condition if useless checks detected.
Andrei Karas
1
-0
/
+10
2015-07-24
Add detection for some calls to new operator.
Andrei Karas
1
-0
/
+6
2015-07-24
Dont add unknown var if it already known and var node is empty.
Andrei Karas
1
-1
/
+2
2015-07-24
Dont add empty variable names from parsing function.
Andrei Karas
1
-0
/
+2
2015-07-23
Add some missing checks for null pointers.
Andrei Karas
1
-0
/
+6
2015-07-23
Check right part of MODIFY_EXPR node.
Andrei Karas
1
-0
/
+4
2015-07-23
Do not check for null pointers variables with vptr.
Andrei Karas
2
-0
/
+19
2015-07-23
Fix some false positive with getting address from pointer variable.
Andrei Karas
1
-0
/
+6
2015-07-23
Fix some false positive with calling function.
Andrei Karas
1
-4
/
+18
2015-07-23
Dont check variable type on PARM_DECL also add unknown vars to known.
Andrei Karas
1
-8
/
+22
2015-07-23
While adding known null/non null vars also add it to known vars collection.
Andrei Karas
1
-0
/
+4
2015-07-23
Check all variables before using for pointer type.
Andrei Karas
1
-1
/
+35
2015-07-23
Remove null checks from COMPONENT_REF node. But add check in different parent...
Andrei Karas
8
-10
/
+195
2015-07-23
Ignore 'this' variable from internal checks.
Andrei Karas
1
-1
/
+5
2015-07-23
Add this pointer as known non null var in methods.
Andrei Karas
1
-0
/
+4
2015-07-22
Allow detect some kind of empty pointer variables or if assigned unknown value.
Andrei Karas
1
-11
/
+19
2015-07-22
Remove from checking for null pointers COMPONENT_REF node.
Andrei Karas
1
-0
/
+2
2015-07-22
Fix memory corruption on removing linked variables.
Andrei Karas
1
-0
/
+5
2015-07-22
Allow detect as non null if to pointer assigned address from some var.
Andrei Karas
1
-0
/
+14
2015-07-21
Track new pointer variables if variable not have initial value.
Andrei Karas
1
-0
/
+6
2015-07-21
Fix possible memory corruption in working with linked variables.
Andrei Karas
1
-10
/
+5
2015-07-21
Track variables as non null if to pointer variable assigned non zero value.
Andrei Karas
1
-2
/
+5
2015-07-21
Fix false positives with detecting variables as pointers in VAR_DECL nodes.
Andrei Karas
1
-0
/
+3
2015-07-20
Work with break statement in same way like with continue.
Andrei Karas
3
-0
/
+15
2015-07-20
Fix detection for normal variables as pointers.
Andrei Karas
1
-2
/
+5
2015-07-20
Fix handling "var = new Type" if Type have virtual destructor.
Andrei Karas
1
-14
/
+45
2015-07-20
Improve call function handling.
Andrei Karas
2
-22
/
+34
2015-07-20
Detect what variable is null after if with both branches set variable to null...
Andrei Karas
1
-0
/
+8
2015-07-20
Allow detect if variable was assigned nullptr.
Andrei Karas
1
-0
/
+5
2015-07-20
Detect what variable is non null after if with both branches set variable to ...
Andrei Karas
1
-1
/
+13
2015-07-20
Add ability for detect what variable will be non null after if block (in else...
Andrei Karas
3
-5
/
+21
2015-07-20
If in if/while body changed any variable, outside of body it removed from kno...
Andrei Karas
3
-0
/
+16
2015-07-19
Handle situation like this: "type var = nullptr". Here var will be known as n...
Andrei Karas
3
-0
/
+16
2015-07-19
Fix ability for detect what variable will be non null after while block.
Andrei Karas
1
-1
/
+3
2015-07-19
Add ability for detect what variable will be non null after if block.
Andrei Karas
3
-0
/
+41
2015-07-18
Fix detecting sub nodes in MODIFY_EXPR.
Andrei Karas
1
-3
/
+6
2015-07-13
Add ability to detect return from operator new as non null pointer.
Andrei Karas
1
-1
/
+3
2015-07-10
Fix false positive like this: ptr = ptr->val;
Andrei Karas
1
-4
/
+9
2015-07-10
Add analysis for CONTINUE_STMT node.
Andrei Karas
4
-4
/
+27
2015-07-10
Unlink assigned variable in if/while body.
Andrei Karas
2
-10
/
+19
2015-07-10
Fix false positives in second check in while condition.
Andrei Karas
1
-0
/
+2
2015-07-10
Disable check for useless checks in second check in while condition.
Andrei Karas
2
-4
/
+8
2015-07-10
In WHILE_STMT also check condition after while body.
Andrei Karas
1
-0
/
+5
2015-07-10
Add ability to check variables assigned in if/while and check outside of this...
Andrei Karas
3
-22
/
+20
2015-07-08
Add WHILE_STMT node analysis.
Andrei Karas
5
-1
/
+119
2015-07-06
Track variable for checking null pointer assigned from function call only if ...
Andrei Karas
1
-0
/
+16
2015-07-06
Add way to track variables if to it was assigned function result.
Andrei Karas
6
-11
/
+129
2015-07-05
Add non null function arguments to knownVars and knownNonNullVars collections.
Andrei Karas
1
-1
/
+5
[next]