mirror of
https://github.com/hohn/codeql-workshop-dataflow-c.git
synced 2025-12-16 10:33:04 +01: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."
|