mirror of
https://github.com/github/codeql.git
synced 2026-03-01 05:13:41 +01:00
13 lines
266 B
Plaintext
13 lines
266 B
Plaintext
/**
|
|
* @kind path-problem
|
|
*/
|
|
import csharp
|
|
import Common
|
|
import DataFlow::PathGraph
|
|
|
|
from Config c, DataFlow::PathNode source, DataFlow::PathNode sink, string s
|
|
where c.hasFlowPath(source, sink)
|
|
and s = sink.toString()
|
|
select sink, s, source, sink
|
|
order by s asc
|