Update cpp/ql/src/Security/CWE/CWE-014/MemsetMayBeDeleted.ql

Co-authored-by: intrigus-lgtm <60750685+intrigus-lgtm@users.noreply.github.com>
This commit is contained in:
Mathias Vorreiter Pedersen
2021-02-25 19:49:58 +01:00
committed by GitHub
parent 9e7c9d0ea0
commit 2777ca445e

View File

@@ -1,6 +1,6 @@
/**
* @name Call to `memset` may be deleted
* @description Using `memset` the function to clear private data in a variable that has no subsequent use
* @description Using the `memset` function to clear private data in a variable that has no subsequent use
* can make information-leak vulnerabilities easier to exploit because the compiler can remove the call.
* @kind problem
* @id cpp/memset-may-be-deleted