15 lines
250 B
Plaintext
15 lines
250 B
Plaintext
/**
|
|
* @name findPrintf
|
|
* @description Find calls to plain fprintf
|
|
* @kind problem
|
|
* @id cpp-fprintf-call
|
|
* @problem.severity warning
|
|
*/
|
|
|
|
import cpp
|
|
|
|
from FunctionCall fc
|
|
where
|
|
fc.getTarget().getName() = "fprintf"
|
|
select fc, "call of fprintf"
|