|
|
@ -917,7 +917,7 @@ public:
|
|
|
|
};
|
|
|
|
};
|
|
|
|
|
|
|
|
|
|
|
|
CPatchThread *PatchThread = NULL;
|
|
|
|
CPatchThread *PatchThread = NULL;
|
|
|
|
IThread *thread = NULL;
|
|
|
|
CThread *thread = NULL;
|
|
|
|
|
|
|
|
|
|
|
|
int myProgressFunc(void *foo, double t, double d, double ultotal, double ulnow)
|
|
|
|
int myProgressFunc(void *foo, double t, double d, double ultotal, double ulnow)
|
|
|
|
{
|
|
|
|
{
|
|
|
@ -940,7 +940,7 @@ void startPatchThread (const std::string &serverPath, const std::string &serverV
|
|
|
|
PatchThread = new CPatchThread (serverPath, serverVersion, urlOk, urlFailed, logSeparator);
|
|
|
|
PatchThread = new CPatchThread (serverPath, serverVersion, urlOk, urlFailed, logSeparator);
|
|
|
|
nlassert (PatchThread != NULL);
|
|
|
|
nlassert (PatchThread != NULL);
|
|
|
|
|
|
|
|
|
|
|
|
thread = IThread::create (PatchThread);
|
|
|
|
thread = CThread::create (PatchThread);
|
|
|
|
nlassert (thread != NULL);
|
|
|
|
nlassert (thread != NULL);
|
|
|
|
thread->start ();
|
|
|
|
thread->start ();
|
|
|
|
}
|
|
|
|
}
|
|
|
|