mirror of
https://invent.kde.org/network/falkon.git
synced 2024-12-20 10:46:35 +01:00
Removed Google Reader from online RSS readers.
Also fixed uninitialized variable issue in AES interface.
This commit is contained in:
parent
31d906b75b
commit
eb2567939f
@ -50,12 +50,6 @@ RSSNotification::RSSNotification(const QString &title, const QUrl &url, WebView*
|
||||
bloglines.icon = QIcon(":/icons/sites/bloglines.png");
|
||||
bloglines.address = "http://www.bloglines.com/sub?url=";
|
||||
|
||||
RssApp greader;
|
||||
greader.type = WebApplication;
|
||||
greader.title = "Google Reader";
|
||||
greader.icon = QIcon(":/icons/sites/google.png");
|
||||
greader.address = "http://www.google.com/ig/add?feedurl=";
|
||||
|
||||
RssApp myaol;
|
||||
myaol.type = WebApplication;
|
||||
myaol.title = "My AOL";
|
||||
@ -74,7 +68,7 @@ RSSNotification::RSSNotification(const QString &title, const QUrl &url, WebView*
|
||||
yahoo.icon = QIcon(":/icons/sites/yahoo.png");
|
||||
yahoo.address = "http://add.my.yahoo.com/rss?url=";
|
||||
|
||||
m_rssApps << bloglines << greader << myaol << netvibes << yahoo;
|
||||
m_rssApps << bloglines << myaol << netvibes << yahoo;
|
||||
|
||||
#ifdef QZ_WS_X11
|
||||
const QString &akregatorBin = QzTools::resolveFromPath("akregator");
|
||||
|
@ -71,7 +71,7 @@ bool AesInterface::init(int evpMode, const QByteArray &password, const QByteArra
|
||||
return false;
|
||||
}
|
||||
|
||||
int result;
|
||||
int result = 0;
|
||||
if (evpMode == EVP_PKEY_MO_ENCRYPT) {
|
||||
m_iVector = createRandomData(EVP_MAX_IV_LENGTH);
|
||||
result = EVP_EncryptInit_ex(&m_encodeCTX, EVP_aes_256_cbc(), NULL, key, (uchar*)m_iVector.constData());
|
||||
|
Loading…
Reference in New Issue
Block a user