id,summary,reporter,owner,description,type,status,milestone,component,version,severity,resolution,keywords,cc 5826,threads.cpp: resource leak on threads creation failure,noloader@…,viboes,"There's a number of reasons a thread might fail to be created, especially on Windows CE. For example, specifying a SecurityAttributes structure or creating more than ~20 threads will result in thread creation failure. Index: thread.cpp =================================================================== RCS file: /cvsroot/boost/boost/libs/thread/src/thread.cpp,v retrieving revision 1.25 diff -r1.25 thread.cpp 57a58 > ThreadProxyData* data = new ThreadProxyData(start_address,arglist); 59,60c60,65 < new ThreadProxyData(start_address,arglist),initflag,&threadID); < if (hthread!=0) --- > data,initflag,&threadID); > if (hthread==0) { > delete data; > return 0; > } > if (thrdaddr!=0) ",Bugs,closed,Boost 1.49.0,thread,Boost 1.47.0,Problem,fixed,,