Skip to content

Commit 5d21c64

Browse files
committed
Dataflow: qldoc fix.
1 parent 4f9a6c1 commit 5d21c64

File tree

24 files changed

+72
-24
lines changed

24 files changed

+72
-24
lines changed

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

Lines changed: 3 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -532,7 +532,9 @@ private module Stage1 {
532532
}
533533

534534
/**
535-
* Holds if an output from `call` is reached in the flow covered by `revFlow`.
535+
* Holds if an output from `call` is reached in the flow covered by `revFlow`
536+
* and data might flow through the target callable resulting in reverse flow
537+
* reaching an argument of `call`.
536538
*/
537539
pragma[nomagic]
538540
private predicate revFlowIsReturned(DataFlowCall call, boolean toReturn, Configuration config) {

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

Lines changed: 3 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -532,7 +532,9 @@ private module Stage1 {
532532
}
533533

534534
/**
535-
* Holds if an output from `call` is reached in the flow covered by `revFlow`.
535+
* Holds if an output from `call` is reached in the flow covered by `revFlow`
536+
* and data might flow through the target callable resulting in reverse flow
537+
* reaching an argument of `call`.
536538
*/
537539
pragma[nomagic]
538540
private predicate revFlowIsReturned(DataFlowCall call, boolean toReturn, Configuration config) {

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

Lines changed: 3 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -532,7 +532,9 @@ private module Stage1 {
532532
}
533533

534534
/**
535-
* Holds if an output from `call` is reached in the flow covered by `revFlow`.
535+
* Holds if an output from `call` is reached in the flow covered by `revFlow`
536+
* and data might flow through the target callable resulting in reverse flow
537+
* reaching an argument of `call`.
536538
*/
537539
pragma[nomagic]
538540
private predicate revFlowIsReturned(DataFlowCall call, boolean toReturn, Configuration config) {

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

Lines changed: 3 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -532,7 +532,9 @@ private module Stage1 {
532532
}
533533

534534
/**
535-
* Holds if an output from `call` is reached in the flow covered by `revFlow`.
535+
* Holds if an output from `call` is reached in the flow covered by `revFlow`
536+
* and data might flow through the target callable resulting in reverse flow
537+
* reaching an argument of `call`.
536538
*/
537539
pragma[nomagic]
538540
private predicate revFlowIsReturned(DataFlowCall call, boolean toReturn, Configuration config) {

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

Lines changed: 3 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -532,7 +532,9 @@ private module Stage1 {
532532
}
533533

534534
/**
535-
* Holds if an output from `call` is reached in the flow covered by `revFlow`.
535+
* Holds if an output from `call` is reached in the flow covered by `revFlow`
536+
* and data might flow through the target callable resulting in reverse flow
537+
* reaching an argument of `call`.
536538
*/
537539
pragma[nomagic]
538540
private predicate revFlowIsReturned(DataFlowCall call, boolean toReturn, Configuration config) {

cpp/ql/src/semmle/code/cpp/ir/dataflow/internal/DataFlowImpl.qll

Lines changed: 3 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -532,7 +532,9 @@ private module Stage1 {
532532
}
533533

534534
/**
535-
* Holds if an output from `call` is reached in the flow covered by `revFlow`.
535+
* Holds if an output from `call` is reached in the flow covered by `revFlow`
536+
* and data might flow through the target callable resulting in reverse flow
537+
* reaching an argument of `call`.
536538
*/
537539
pragma[nomagic]
538540
private predicate revFlowIsReturned(DataFlowCall call, boolean toReturn, Configuration config) {

cpp/ql/src/semmle/code/cpp/ir/dataflow/internal/DataFlowImpl2.qll

Lines changed: 3 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -532,7 +532,9 @@ private module Stage1 {
532532
}
533533

534534
/**
535-
* Holds if an output from `call` is reached in the flow covered by `revFlow`.
535+
* Holds if an output from `call` is reached in the flow covered by `revFlow`
536+
* and data might flow through the target callable resulting in reverse flow
537+
* reaching an argument of `call`.
536538
*/
537539
pragma[nomagic]
538540
private predicate revFlowIsReturned(DataFlowCall call, boolean toReturn, Configuration config) {

cpp/ql/src/semmle/code/cpp/ir/dataflow/internal/DataFlowImpl3.qll

Lines changed: 3 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -532,7 +532,9 @@ private module Stage1 {
532532
}
533533

534534
/**
535-
* Holds if an output from `call` is reached in the flow covered by `revFlow`.
535+
* Holds if an output from `call` is reached in the flow covered by `revFlow`
536+
* and data might flow through the target callable resulting in reverse flow
537+
* reaching an argument of `call`.
536538
*/
537539
pragma[nomagic]
538540
private predicate revFlowIsReturned(DataFlowCall call, boolean toReturn, Configuration config) {

cpp/ql/src/semmle/code/cpp/ir/dataflow/internal/DataFlowImpl4.qll

Lines changed: 3 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -532,7 +532,9 @@ private module Stage1 {
532532
}
533533

534534
/**
535-
* Holds if an output from `call` is reached in the flow covered by `revFlow`.
535+
* Holds if an output from `call` is reached in the flow covered by `revFlow`
536+
* and data might flow through the target callable resulting in reverse flow
537+
* reaching an argument of `call`.
536538
*/
537539
pragma[nomagic]
538540
private predicate revFlowIsReturned(DataFlowCall call, boolean toReturn, Configuration config) {

csharp/ql/src/semmle/code/csharp/dataflow/internal/DataFlowImpl.qll

Lines changed: 3 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -532,7 +532,9 @@ private module Stage1 {
532532
}
533533

534534
/**
535-
* Holds if an output from `call` is reached in the flow covered by `revFlow`.
535+
* Holds if an output from `call` is reached in the flow covered by `revFlow`
536+
* and data might flow through the target callable resulting in reverse flow
537+
* reaching an argument of `call`.
536538
*/
537539
pragma[nomagic]
538540
private predicate revFlowIsReturned(DataFlowCall call, boolean toReturn, Configuration config) {

0 commit comments

Comments
 (0)