From: Manuel Nickschas Date: Wed, 22 Aug 2018 23:50:08 +0000 (+0200) Subject: qa: Remove bogus self-assignment X-Git-Tag: 0.13-rc2~85 X-Git-Url: https://git.quassel-irc.org/?p=quassel.git;a=commitdiff_plain;h=fd2b2fa2f94e9c1fa353b9ba1cd72792df07abb0 qa: Remove bogus self-assignment --- 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)