summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
-rw-r--r--lib/crypto/CipherContext.cpp3
1 files changed, 2 insertions, 1 deletions
diff --git a/lib/crypto/CipherContext.cpp b/lib/crypto/CipherContext.cpp
index d68c4b5d..e5cd9b0e 100644
--- a/lib/crypto/CipherContext.cpp
+++ b/lib/crypto/CipherContext.cpp
@@ -106,7 +106,8 @@ void CipherContext::Init(CipherContext::CipherFunction Function, const CipherDes
#else
// With the old version, a copy needs to be taken first.
mpDescription = rDescription.Clone();
- // Mark it as not a leak, otherwise static cipher contexts cause supriously memory leaks to be reported
+ // Mark it as not a leak, otherwise static cipher contexts
+ // cause spurious memory leaks to be reported
MEMLEAKFINDER_NOT_A_LEAK(mpDescription);
mpDescription->SetupParameters(&ctx);
#endif