Update cpp/ql/src/experimental/Security/CWE/CWE-416/UseAfterExpiredLifetime.qhelp

Co-authored-by: Geoffrey White <40627776+geoffw0@users.noreply.github.com>
This commit is contained in:
Mathias Vorreiter Pedersen
2023-09-13 11:37:32 +01:00
committed by GitHub
parent 1232120d42
commit 81d20be1ee

View File

@@ -13,7 +13,7 @@ If the object is accessed after its lifetime has ended, the program may crash or
<recommendation>
<p>
Ensure that no objct is accessed after its lifetime has ended.
Ensure that no object is accessed after its lifetime has ended.
Use RAII ("Resource Acquisition Is Initialization") to manage the lifetime of objects, and avoid manual memory management, if possible.
</p>