Skip to content

Commit cf997fd

Browse files
committed
Trivial: improve parameter names
These names make more sense and match everywhere else that this function signature is used.
1 parent 5cf7112 commit cf997fd

File tree

1 file changed

+3
-3
lines changed

1 file changed

+3
-3
lines changed

go/ql/lib/semmle/go/dataflow/internal/TaintTrackingUtil.qll

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -214,11 +214,11 @@ abstract class FunctionModel extends Function {
214214
}
215215

216216
/**
217-
* Holds if the additional step from `src` to `sink` should be included in all
217+
* Holds if the additional step from `node1` to `node2` should be included in all
218218
* global taint flow configurations.
219219
*/
220-
predicate defaultAdditionalTaintStep(DataFlow::Node src, DataFlow::Node sink, string model) {
221-
localAdditionalTaintStep(src, sink, model)
220+
predicate defaultAdditionalTaintStep(DataFlow::Node node1, DataFlow::Node node2, string model) {
221+
localAdditionalTaintStep(node1, node2, model)
222222
}
223223

224224
/**

0 commit comments

Comments
 (0)