forked from lix-project/lix
Fix uninitialised variable
This commit is contained in:
parent
f702c92262
commit
e5346c54df
|
@ -334,7 +334,7 @@ struct CurlDownloader : public Downloader
|
|||
{
|
||||
std::map<CURL *, std::shared_ptr<DownloadItem>> items;
|
||||
|
||||
bool quit;
|
||||
bool quit = false;
|
||||
|
||||
std::chrono::steady_clock::time_point nextWakeup;
|
||||
|
||||
|
|
Loading…
Reference in a new issue