mirror of
https://github.com/github/codeql.git
synced 2026-07-14 07:48:16 +02:00
14 lines
188 B
Plaintext
14 lines
188 B
Plaintext
|
|
import python
|
|
import semmle.python.pointsto.PointsTo
|
|
|
|
from int size
|
|
|
|
where
|
|
size = count(ControlFlowNode f |
|
|
not PointsToInternal::reachableBlock(f.getBasicBlock(), _)
|
|
)
|
|
|
|
|
|
select size
|