Skip to content

Commit 4891a64

Browse files
committed
C++: Newlines.
1 parent 8208f92 commit 4891a64

File tree

1 file changed

+6
-1
lines changed

1 file changed

+6
-1
lines changed

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

Lines changed: 6 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -89,7 +89,12 @@ class Recv extends SendRecv instanceof RemoteFlowSourceFunction {
8989
/**
9090
* A function call that sends or receives data over a network.
9191
*
92-
* note: functions such as `write` may be writing to a network source or a file. We could attempt to determine which, and sort results into `cpp/cleartext-transmission` and perhaps `cpp/cleartext-storage-file`. In practice it usually isn't very important which query reports a result as long as its reported exactly once. See `checkSocket` to narrow this down somewhat.
92+
* note: functions such as `write` may be writing to a network source or a
93+
* file. We could attempt to determine which, and sort results into
94+
* `cpp/cleartext-transmission` and perhaps `cpp/cleartext-storage-file`. In
95+
* practice it usually isn't very important which query reports a result as
96+
* long as its reported exactly once. See `checkSocket` to narrow this down
97+
* somewhat.
9398
*/
9499
abstract class NetworkSendRecv extends FunctionCall {
95100
SendRecv target;

0 commit comments

Comments
 (0)