C++: Fix up isParameterDeref.

This commit is contained in:
Geoffrey White
2022-01-24 11:01:14 +00:00
parent 4326e6f706
commit 588447d596
2 changed files with 9 additions and 3 deletions

View File

@@ -59,7 +59,7 @@ private class FgetsFunction extends DataFlowFunction, TaintFunction, ArrayFuncti
override predicate hasArrayOutput(int bufParam) { bufParam = 0 }
override predicate hasSocketInput(FunctionInput input) { input.isParameter(2) }
override predicate hasSocketInput(FunctionInput input) { input.isParameterDeref(2) }
}