]> git.pld-linux.org Git - packages/clementine.git/blame - clementine-cryptopp.patch
Release 24 (by relup.sh)
[packages/clementine.git] / clementine-cryptopp.patch
CommitLineData
6f2faa1b
JB
1--- clementine-1.3.1/src/internet/spotify/spotifyblobdownloader.cpp.orig 2016-01-28 15:51:24.000000000 +0100
2+++ clementine-1.3.1/src/internet/spotify/spotifyblobdownloader.cpp 2018-12-31 19:20:49.438080352 +0100
3c8d97d3
JB
3@@ -189,7 +189,7 @@
4
5 try {
6 CryptoPP::ByteQueue bytes;
7- bytes.Put(reinterpret_cast<const byte*>(public_key_data.constData()),
8+ bytes.Put(reinterpret_cast<const CryptoPP::byte*>(public_key_data.constData()),
9 public_key_data.size());
10 bytes.MessageEnd();
11
12@@ -204,9 +204,9 @@
13 actual_filename.remove(kSignatureSuffix);
14
15 const bool result = verifier.VerifyMessage(
16- reinterpret_cast<const byte*>(file_data[actual_filename].constData()),
17+ reinterpret_cast<const CryptoPP::byte*>(file_data[actual_filename].constData()),
18 file_data[actual_filename].size(),
19- reinterpret_cast<const byte*>(
20+ reinterpret_cast<const CryptoPP::byte*>(
21 file_data[signature_filename].constData()),
22 file_data[signature_filename].size());
23 qLog(Debug) << "Verifying" << actual_filename << "against"
This page took 0.096304 seconds and 4 git commands to generate.