Skip to content

Commit 650e9e1

Browse files
committed
C++: Fix Code Scanning error.
1 parent f1c124a commit 650e9e1

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

cpp/ql/src/experimental/Likely Bugs/OverrunWriteProductFlow.ql

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -162,7 +162,7 @@ module ValidState {
162162
// p = b ? new char[size] : new char[size + 1];
163163
// memset(p, 0, size + 2);
164164
// ```
165-
// the valid flow-states at the `memset` must include set set `{0, 1}` since the
165+
// the valid flow-states at the `memset` must include the set `{0, 1}` since the
166166
// flow-state at `new char[size]` is `0`, and the flow-state at `new char[size + 1]`
167167
// is `1`.
168168
//

0 commit comments

Comments
 (0)