mirror of
https://github.com/github/codeql.git
synced 2026-01-14 23:14:59 +01:00
11 lines
190 B
Plaintext
11 lines
190 B
Plaintext
import maximalFlowsConfig
|
|
|
|
from
|
|
DataFlow::Node source,
|
|
DataFlow::Node sink
|
|
where
|
|
source != sink and
|
|
exists(MaximalFlowsConfig cfg | cfg.hasFlow(source, sink))
|
|
select
|
|
source, sink
|