mirror of
https://github.com/github/codeql.git
synced 2025-12-17 17:23:36 +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
278 B
Plaintext
12 lines
278 B
Plaintext
/**
|
|
* @kind path-problem
|
|
*/
|
|
|
|
import semmle.code.cpp.dataflow.DataFlow
|
|
import ASTConfiguration
|
|
import AstFlow::PathGraph
|
|
|
|
from AstFlow::PathNode src, AstFlow::PathNode sink
|
|
where AstFlow::flowPath(src, sink)
|
|
select sink, src, sink, sink + " flows from $@", src, src.toString()
|