Files
gh-mrva/Fprintf.ql
Michael Hohn 56e68f5eed
Some checks failed
release / release (push) Has been cancelled
fix test configuration
2025-08-19 11:23:48 -07:00

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"