Files
codeql/python/ql/test/experimental/dataflow/tainttracking
Rasmus Lerchedahl Petersen a1fe8a5b2b python: handle not in BarrierGuard
in the program
```python
if not is_safe(path):
  return
```
the last node in the `ConditionBlock` is `not is_safe(path)`,
so it would never match "a call to is_safe".
Thus, guards inside `not` would not be part of `GuardNode`
(nor `BarrierGuard`). Now they can.
2022-06-27 20:10:47 +00:00
..
2021-01-29 21:28:43 +01:00
2021-10-28 09:47:04 +02:00