Skip to content

Commit f7a1647

Browse files
committed
spelling: overrunning
Signed-off-by: Josh Soref <[email protected]>
1 parent aa70b97 commit f7a1647

File tree

3 files changed

+3
-3
lines changed

3 files changed

+3
-3
lines changed

cpp/ql/src/CHANGELOG.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -125,7 +125,7 @@
125125

126126
* The `security` tag has been added to the `cpp/return-stack-allocated-memory` query. As a result, its results will now appear by default.
127127
* The "Uncontrolled data in arithmetic expression" (cpp/uncontrolled-arithmetic) query has been enhanced to reduce false positive results and its @precision increased to high.
128-
* A new `cpp/very-likely-overruning-write` query has been added to the default query suite for C/C++. The query reports some results that were formerly flagged by `cpp/overruning-write`.
128+
* A new `cpp/very-likely-overrunning-write` query has been added to the default query suite for C/C++. The query reports some results that were formerly flagged by `cpp/overrunning-write`.
129129

130130
### Minor Analysis Improvements
131131

cpp/ql/src/Security/CWE/CWE-120/OverrunWrite.ql

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -26,7 +26,7 @@ where
2626
dest = bw.getDest() and
2727
destSize = getBufferSize(dest, _) and
2828
estimated = bw.getMaxDataLimited(reason) and
29-
// we exclude ValueFlowAnalysis as it is reported in cpp/very-likely-overruning-write
29+
// we exclude ValueFlowAnalysis as it is reported in cpp/very-likely-overrunning-write
3030
not reason instanceof ValueFlowAnalysis and
3131
// we can deduce that too much data may be copied (even without
3232
// long '%f' conversions)

cpp/ql/src/change-notes/released/0.0.8.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -4,7 +4,7 @@
44

55
* The `security` tag has been added to the `cpp/return-stack-allocated-memory` query. As a result, its results will now appear by default.
66
* The "Uncontrolled data in arithmetic expression" (cpp/uncontrolled-arithmetic) query has been enhanced to reduce false positive results and its @precision increased to high.
7-
* A new `cpp/very-likely-overruning-write` query has been added to the default query suite for C/C++. The query reports some results that were formerly flagged by `cpp/overruning-write`.
7+
* A new `cpp/very-likely-overrunning-write` query has been added to the default query suite for C/C++. The query reports some results that were formerly flagged by `cpp/overrunning-write`.
88

99
### Minor Analysis Improvements
1010

0 commit comments

Comments
 (0)