mirror of
https://github.com/HifiExperiments/overte.git
synced 2025-07-03 08:58:46 +02:00
Fix uninitialized pointer in AssetResourceRequest
This commit is contained in:
parent
51fc43ea4c
commit
c02df56ceb
1 changed files with 1 additions and 1 deletions
|
@ -30,7 +30,7 @@ private slots:
|
||||||
void onDownloadProgress(qint64 bytesReceived, qint64 bytesTotal);
|
void onDownloadProgress(qint64 bytesReceived, qint64 bytesTotal);
|
||||||
|
|
||||||
private:
|
private:
|
||||||
AssetRequest* _assetRequest;
|
AssetRequest* _assetRequest { nullptr };
|
||||||
};
|
};
|
||||||
|
|
||||||
#endif
|
#endif
|
||||||
|
|
Loading…
Reference in a new issue