mirror of
https://github.com/hohn/codeql-workshop-dataflow-c.git
synced 2026-05-03 04:39:31 +02:00
6 lines
171 B
Plaintext
6 lines
171 B
Plaintext
import cpp
|
|
|
|
from ArrayExpr array
|
|
where array.getArrayBase().getType().(DerivedType).getBaseType().getName() = "dyn_input_t"
|
|
select array, "Access of dynamic input array."
|