Fix uninitialised variable

This commit is contained in:
Eelco Dolstra 2016-10-19 15:02:38 +02:00
parent f702c92262
commit e5346c54df

View file

@ -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;