Skip to content

Commit 3f04530

Browse files
committed
C++: Autoformat.
1 parent fdf45f0 commit 3f04530

File tree

1 file changed

+2
-4
lines changed

1 file changed

+2
-4
lines changed

cpp/ql/src/semmle/code/cpp/dataflow/internal/TaintTrackingUtil.qll

Lines changed: 2 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -83,13 +83,11 @@ predicate localAdditionalTaintStep(DataFlow::Node nodeFrom, DataFlow::Node nodeT
8383
or
8484
exprToPartialDefinitionStep(nodeFrom.asExpr(), nodeTo.asPartialDefinition())
8585
or
86-
// Reverse taint: taint that flows from the post-update node of a reference
86+
// Reverse taint: taint that flows from the post-update node of a reference
8787
// returned by a function call, back into the qualifier of that function.
8888
// This allows taint to flow 'in' through references returned by a modeled
8989
// function such as `operator[]`.
90-
exists(
91-
TaintFunction f, Call call, FunctionInput inModel, FunctionOutput outModel
92-
|
90+
exists(TaintFunction f, Call call, FunctionInput inModel, FunctionOutput outModel |
9391
call.getTarget() = f and
9492
inModel.isReturnValueDeref() and
9593
outModel.isQualifierObject() and

0 commit comments

Comments
 (0)