id,summary,reporter,owner,description,type,status,milestone,component,version,severity,resolution,keywords,cc 5838,thread.cpp: thread::join swallows errors from WaitForSingleObject,noloader@…,viboes,"Index: thread.cpp =================================================================== RCS file: /cvsroot/boost/boost/libs/thread/src/thread.cpp,v retrieving revision 1.25 diff -r1.25 thread.cpp 234c234 < int res = 0; --- > int wait1 = WAIT_OBJECT_0, res = 0; 236,237c236,237 < res = WaitForSingleObject(reinterpret_cast(m_thread), INFINITE); < assert(res == WAIT_OBJECT_0); --- > wait1 = WaitForSingleObject(reinterpret_cast(m_thread), INFINITE); > assert(wait1 == WAIT_OBJECT_0); 250a251,253 > > if(wait1 != WAIT_OBJECT_0) > throw std::runtime_error(""Failed to wait on thread""); ",Support Requests,closed,To Be Determined,thread,Boost 1.47.0,Problem,invalid,,noloader@… viboes