File tree
Expand file treeCollapse file tree1 file changed
+8
-3
lines changed Expand file treeCollapse file tree1 file changed
+8
-3
lines changed Original file line number | Diff line number | Diff line change |
---|
@@ -398,9 +398,14 @@ def get_vulnerability(
|
398 | 398 | Returns:
|
399 | 399 | A Vulnerability if it exists, else None
|
400 | 400 | """
|
401 |
| -nodes_in_constraint = [secondary for secondary in reversed(source.secondary_nodes) |
402 |
| -if lattice.in_constraint(secondary, |
403 |
| -sink.cfg_node)] |
| 401 | +nodes_in_constraint = [ |
| 402 | +secondary |
| 403 | +for secondary in reversed(source.secondary_nodes) |
| 404 | +if lattice.in_constraint( |
| 405 | +secondary, |
| 406 | +sink.cfg_node |
| 407 | +) |
| 408 | +] |
404 | 409 | nodes_in_constraint.append(source.cfg_node)
|
405 | 410 | if sink.trigger.all_arguments_propagate_taint:
|
406 | 411 | sink_args = get_sink_args(sink.cfg_node)
|
|
You can’t perform that action at this time.
0 commit comments