qa: Remove bogus self-assignment
authorManuel Nickschas <sputnick@quassel-irc.org>
Wed, 22 Aug 2018 23:50:08 +0000 (01:50 +0200)
committerManuel Nickschas <sputnick@quassel-irc.org>
Wed, 22 Aug 2018 23:50:08 +0000 (01:50 +0200)
src/core/cipher.cpp

index 9bfc787..fb6a697 100644 (file)
@@ -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)