mirror of
https://github.com/github/codeql.git
synced 2026-01-11 05:30:24 +01:00
8 lines
251 B
Plaintext
8 lines
251 B
Plaintext
import cpp
|
|
import semmle.code.cpp.dataflow.DataFlow
|
|
|
|
from DataFlow::Node nodeFrom, DataFlow::Node nodeTo
|
|
where DataFlow::localFlowStep(nodeFrom, nodeTo)
|
|
and nodeFrom.getFunction().getName().matches("%\\_with\\_local\\_flow")
|
|
select nodeFrom, nodeTo
|