1
0
Fork 0
mirror of https://github.com/NixOS/nix synced 2024-09-19 23:03:53 -04:00

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; std::map<CURL *, std::shared_ptr<DownloadItem>> items;
bool quit; bool quit = false;
std::chrono::steady_clock::time_point nextWakeup; std::chrono::steady_clock::time_point nextWakeup;