mirror of
https://github.com/github/codeql.git
synced 2025-12-24 04:36:35 +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
|