mirror of
https://github.com/d47081/qBittorrent.git
synced 2025-02-02 18:04:32 +00:00
Fix possible crash when setting RSS proxy (closes #676288)
This commit is contained in:
parent
1fd326aa15
commit
147060fdee
@ -73,8 +73,12 @@ void CookiesDlg::on_del_btn_clicked() {
|
|||||||
QList<QByteArray> CookiesDlg::getCookies() const {
|
QList<QByteArray> CookiesDlg::getCookies() const {
|
||||||
QList<QByteArray> ret;
|
QList<QByteArray> ret;
|
||||||
for(int i=0; i<ui->cookiesTable->rowCount(); ++i) {
|
for(int i=0; i<ui->cookiesTable->rowCount(); ++i) {
|
||||||
QString key = ui->cookiesTable->item(i, COOKIE_KEY)->text().trimmed();
|
QString key;
|
||||||
QString value = ui->cookiesTable->item(i, COOKIE_VALUE)->text().trimmed();
|
if(ui->cookiesTable->item(i, COOKIE_KEY))
|
||||||
|
key = ui->cookiesTable->item(i, COOKIE_KEY)->text().trimmed();
|
||||||
|
QString value;
|
||||||
|
if(ui->cookiesTable->item(i, COOKIE_VALUE))
|
||||||
|
value = ui->cookiesTable->item(i, COOKIE_VALUE)->text().trimmed();
|
||||||
if(!key.isEmpty() && !value.isEmpty()) {
|
if(!key.isEmpty() && !value.isEmpty()) {
|
||||||
const QString raw_cookie = key+"="+value;
|
const QString raw_cookie = key+"="+value;
|
||||||
qDebug("Cookie: %s", qPrintable(raw_cookie));
|
qDebug("Cookie: %s", qPrintable(raw_cookie));
|
||||||
|
Loading…
x
Reference in New Issue
Block a user