Skip to content

Commit b6d5b67

Browse files
committed
C++: Make QLDoc meet style guide.
1 parent 234da63 commit b6d5b67

File tree

4 files changed

+5
-4
lines changed

4 files changed

+5
-4
lines changed

cpp/ql/src/Security/CWE/CWE-311/CleartextBufferWrite.ql

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -19,7 +19,7 @@ import semmle.code.cpp.ir.dataflow.TaintTracking
1919
import DataFlow::PathGraph
2020

2121
/**
22-
* Taint flow from user input to a buffer write.
22+
* A taint flow configuration for flow from user input to a buffer write.
2323
*/
2424
class ToBufferConfiguration extends TaintTracking::Configuration {
2525
ToBufferConfiguration() { this = "ToBufferConfiguration" }

cpp/ql/src/Security/CWE/CWE-311/CleartextFileWrite.ql

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -21,7 +21,7 @@ import semmle.code.cpp.dataflow.TaintTracking
2121
import DataFlow::PathGraph
2222

2323
/**
24-
* Taint flow from a sensitive expression to a `FileWrite` sink.
24+
* A taint flow configuration for flow from a sensitive expression to a `FileWrite` sink.
2525
*/
2626
class FromSensitiveConfiguration extends TaintTracking::Configuration {
2727
FromSensitiveConfiguration() { this = "FromSensitiveConfiguration" }

cpp/ql/src/Security/CWE/CWE-311/CleartextTransmission.ql

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -217,7 +217,8 @@ class Encrypted extends Expr {
217217
}
218218

219219
/**
220-
* Taint flow from a sensitive expression.
220+
* A taint flow configuration for flow from a sensitive expression to a network
221+
* operation or encryption operation.
221222
*/
222223
class FromSensitiveConfiguration extends TaintTracking::Configuration {
223224
FromSensitiveConfiguration() { this = "FromSensitiveConfiguration" }

cpp/ql/src/Security/CWE/CWE-313/CleartextSqliteDatabase.ql

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -29,7 +29,7 @@ predicate sqlite_encryption_used() {
2929
}
3030

3131
/**
32-
* Taint flow from a sensitive expression to a `SqliteFunctionCall` sink.
32+
* A taint flow configuration for flow from a sensitive expression to a `SqliteFunctionCall` sink.
3333
*/
3434
class FromSensitiveConfiguration extends TaintTracking::Configuration {
3535
FromSensitiveConfiguration() { this = "FromSensitiveConfiguration" }

0 commit comments

Comments
 (0)