mirror of
https://github.com/github/codeql.git
synced 2025-12-18 09:43:15 +01:00
10 lines
277 B
Plaintext
10 lines
277 B
Plaintext
import allFlowsConfig
|
|
|
|
from DataFlow::Node source, DataFlow::Node sink
|
|
where
|
|
source != sink and
|
|
AllFlowsFlow::flow(source, sink) and
|
|
exists(source.getLocation().getFile().getRelativePath()) and
|
|
exists(sink.getLocation().getFile().getRelativePath())
|
|
select source, sink
|