mirror of
https://github.com/github/codeql.git
synced 2025-12-21 11:16:30 +01:00
10 lines
307 B
Plaintext
10 lines
307 B
Plaintext
import maximalFlowsConfig
|
|
|
|
from DataFlow::Node source, DataFlow::Node sink
|
|
where
|
|
source != sink and
|
|
exists(MaximalFlowsConfig cfg | cfg.hasFlow(source, sink)) and
|
|
exists(source.getLocation().getFile().getRelativePath()) and
|
|
exists(sink.getLocation().getFile().getRelativePath())
|
|
select source, sink
|