mirror of
https://github.com/github/codeql.git
synced 2025-12-19 10:23:15 +01:00
10 lines
346 B
Plaintext
10 lines
346 B
Plaintext
import cpp
|
|
|
|
from ExprCall c, PointerDereferenceExpr deref, VariableAccess va,
|
|
Access fnacc
|
|
where c.getLocation().getFile().getBaseName() = "cjpeg.c" and
|
|
c.getLocation().getStartLine() = 640 and
|
|
deref = c.getExpr() and
|
|
va = deref.getOperand() and
|
|
fnacc = va.getTarget().getAnAssignedValue()
|
|
select c, fnacc.getTarget() |