We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 5cf7112 commit cf997fdCopy full SHA for cf997fd
go/ql/lib/semmle/go/dataflow/internal/TaintTrackingUtil.qll
@@ -214,11 +214,11 @@ abstract class FunctionModel extends Function {
214
}
215
216
/**
217
- * Holds if the additional step from `src` to `sink` should be included in all
+ * Holds if the additional step from `node1` to `node2` should be included in all
218
* global taint flow configurations.
219
*/
220
-predicate defaultAdditionalTaintStep(DataFlow::Node src, DataFlow::Node sink, string model) {
221
- localAdditionalTaintStep(src, sink, model)
+predicate defaultAdditionalTaintStep(DataFlow::Node node1, DataFlow::Node node2, string model) {
+ localAdditionalTaintStep(node1, node2, model)
222
223
224
0 commit comments