From fd2b2fa2f94e9c1fa353b9ba1cd72792df07abb0 Mon Sep 17 00:00:00 2001 From: Manuel Nickschas Date: Thu, 23 Aug 2018 01:50:08 +0200 Subject: [PATCH] qa: Remove bogus self-assignment --- src/core/cipher.cpp | 1 - 1 file changed, 1 deletion(-) diff --git a/src/core/cipher.cpp b/src/core/cipher.cpp index 9bfc787f..fb6a6972 100644 --- a/src/core/cipher.cpp +++ b/src/core/cipher.cpp @@ -117,7 +117,6 @@ QByteArray Cipher::decrypt(QByteArray cipherText) // (if cbc and no error we parse cbc) || (if ecb and error we parse cbc) if ((m_cbc && !error) || (!m_cbc && error)) { - cipherText = cipherText; temp = blowfishCBC(cipherText, false); if (temp == cipherText) -- 2.20.1