Handle return value of QFile::open

This commit is contained in:
2026-04-12 10:19:40 +02:00
parent ef8b3d7668
commit 63149745ed
3 changed files with 21 additions and 15 deletions
+2 -2
View File
@@ -11,8 +11,8 @@
class Download : public QObject
{
Q_OBJECT
QNetworkReply *_reply;
ZSTD_DStream *_dstream;
QNetworkReply *_reply = nullptr;
ZSTD_DStream *_dstream = nullptr;
QFile _fw;
QCryptographicHash _hash;
public: