mirror of
https://github.com/github/codeql.git
synced 2025-12-17 01:03:14 +01:00
This also rewrites all uses of flow test common to use `DataFlow::ConfigSig`. Note that the removed deprecated aliases are 14 months old by now and, hence, can be safely removed.
12 lines
276 B
Plaintext
12 lines
276 B
Plaintext
/**
|
|
* @kind path-problem
|
|
*/
|
|
|
|
import semmle.code.cpp.ir.dataflow.DataFlow
|
|
import IRConfiguration
|
|
import IRFlow::PathGraph
|
|
|
|
from IRFlow::PathNode src, IRFlow::PathNode sink
|
|
where IRFlow::flowPath(src, sink)
|
|
select sink, src, sink, sink + " flows from $@", src, src.toString()
|