Added constructor to initialize all members.

This commit is contained in:
Mark de Wever 2008-06-21 19:44:01 +00:00
parent 2d49a41adb
commit a51b1b97f9

View File

@ -47,6 +47,12 @@ public:
// Argument passed to upload thread.
struct thread_info {
thread_info() :
t(0),
shutdown(false),
lastfile()
{}
threading::thread *t;
bool shutdown;
std::string lastfile;