Welcome to mirror list, hosted at ThFree Co, Russian Federation.

github.com/keepassxreboot/keepassxc.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
Diffstat (limited to 'src/http/Protocol.cpp')
-rw-r--r--src/http/Protocol.cpp2
1 files changed, 1 insertions, 1 deletions
diff --git a/src/http/Protocol.cpp b/src/http/Protocol.cpp
index 40a1445c0..bcb30f0b1 100644
--- a/src/http/Protocol.cpp
+++ b/src/http/Protocol.cpp
@@ -110,7 +110,7 @@ static QByteArray encrypt2(const QByteArray & data, SymmetricCipherGcrypt & ciph
//Encrypt
QByteArray buffer = data + QByteArray(paddingSize, paddingSize);
cipher.reset();
- cipher.processInPlace(buffer);
+ Q_UNUSED(cipher.processInPlace(buffer));
return buffer;
}