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
Age
Commit message (
Expand
)
Author
Files
Lines
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
Improve VAR_DECL node parsing.
Andrei Karas
1
-31
/
+23
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
2
-3
/
+17
2015-07-22
Increase nodes count before detecting infinite loop to 5000000.
Andrei Karas
2
-2
/
+2
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-21
Allow in each node set limit for child nodes to parse.
Andrei Karas
52
-65
/
+70
2015-07-21
Add to parsers to get fields type. Limit type pointers to parse only one chil...
Andrei Karas
9
-10
/
+22
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
5
-4
/
+29
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
4
-7
/
+22
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
Allow parse function type attributes in FUNCTION_TYPE always.
Andrei Karas
2
-2
/
+2
2015-07-06
Track variable for checking null pointer assigned from function call only if ...
Andrei Karas
11
-8
/
+52
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
2015-07-05
Remove old commented code from statement analysis.
Andrei Karas
1
-20
/
+0
2015-07-05
Fix analysis for BIND_EPXR nodes.
Andrei Karas
2
-3
/
+3
[next]