Skip to content

Commit c6e18fe

Browse files
committed
[CPP-435] Replace said with that and the.
1 parent 8aee70d commit c6e18fe

File tree

2 files changed

+2
-2
lines changed

2 files changed

+2
-2
lines changed

cpp/ql/src/Likely Bugs/Memory Management/MemsetMayBeDeleted.qhelp

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -5,7 +5,7 @@
55
<overview>
66
<p>Calling <code>memset</code>, <code>bzero</code>, <code>FillMemory</code> or
77
<code>ZeroMemory</code> on a buffer in order to clear its contents may get
8-
optimized away by the compiler if said buffer is not subsequently used.
8+
optimized away by the compiler if the buffer is not subsequently used.
99
This is not desirable behavior if the buffer contains sensitive data that
1010
could be somehow retrieved by an attacker.</p>
1111

cpp/ql/src/Likely Bugs/Memory Management/MemsetMayBeDeleted.ql

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
/**
22
* @name Call to `memset` may be deleted
33
* @description Calling `memset` or `bzero` on a buffer in order to clear its contents may get optimized away
4-
* by the compiler if said buffer is not subsequently used. This is not desirable
4+
* by the compiler if the buffer is not subsequently used. This is not desirable
55
* behavior if the buffer contains sensitive data that could be exploited by an attacker.
66
* @kind problem
77
* @problem.severity recommendation

0 commit comments

Comments
 (0)