mirror of
https://github.com/hohn/codeql-sample-polkit.git
synced 2025-12-16 13:53:04 +01:00
12 lines
195 B
Plaintext
12 lines
195 B
Plaintext
/**
|
|
* @name Argv index out-of-bounds
|
|
* @kind problem
|
|
* @id cpp/example/argv-out-of-bounds
|
|
*/
|
|
|
|
import cpp
|
|
|
|
from Parameter argc
|
|
where argc.getName() = "argc"
|
|
select argc, "Definition of argc"
|