mirror of
https://github.com/qbittorrent/qBittorrent
synced 2025-07-15 01:33:07 -07:00
Simplify null pointer check
This commit is contained in:
parent
bb73fa5dbe
commit
bf264b983a
2 changed files with 2 additions and 2 deletions
|
@ -65,7 +65,7 @@ QVariant HtmlBrowser::loadResource(int type, const QUrl &name)
|
|||
url.setScheme("http");
|
||||
|
||||
QIODevice *dev = m_diskCache->data(url);
|
||||
if (dev != nullptr) {
|
||||
if (dev) {
|
||||
qDebug() << "HtmlBrowser::loadResource() cache " << url.toString();
|
||||
QByteArray res = dev->readAll();
|
||||
delete dev;
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue