Thanks to visit codestin.com
Credit goes to github.com

Skip to content

Commit 416aa49

Browse files
committed
C++: Capitalize alert message.
1 parent 9c53e39 commit 416aa49

2 files changed

Lines changed: 4 additions & 4 deletions

File tree

cpp/ql/src/experimental/Security/CWE/CWE-14/CompilerRemovalOfCodeToClearBuffers.ql

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -124,4 +124,4 @@ where
124124
not fc.isVariableUseBoundWithArgumentFunction() and
125125
not fc.isVariableUseBoundWithGlobalVariable() and
126126
not fc.isExistsCompilationFlagsBlockingRemoval()
127-
select fc.getArgument(0), "this variable will not be cleared"
127+
select fc.getArgument(0), "This variable will not be cleared."
Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,3 @@
1-
| test.c:13:9:13:13 | buff1 | this variable will not be cleared |
2-
| test.c:35:9:35:13 | buff1 | this variable will not be cleared |
3-
| test.c:43:9:43:13 | buff1 | this variable will not be cleared |
1+
| test.c:13:9:13:13 | buff1 | This variable will not be cleared. |
2+
| test.c:35:9:35:13 | buff1 | This variable will not be cleared. |
3+
| test.c:43:9:43:13 | buff1 | This variable will not be cleared. |

0 commit comments

Comments
 (0)