fix uninitialized variable found by valgrind

git-svn-id: https://svn.code.sf.net/p/speed-dreams/code/trunk@7114 30fe4595-0a0c-4342-8851-515496e4dcbd

Former-commit-id: 1d138cad0b0d303b7607638d696a3cb22a4fb653
Former-commit-id: 35cc9c408471182b6b506dfe61f43fa323a6cce8
This commit is contained in:
iobyte 2020-05-30 14:46:05 +00:00
parent 968f19f324
commit 5428d1d8f8

View file

@ -380,6 +380,7 @@ WebServer::WebServer()
this->userId = -1;
this->previousLaps = -1;
this->raceEndSent = false;
this->pendingAsyncRequestId = 0;
//initialize some curl var
this->multi_handle = curl_multi_init();