bug correction (uninitialized value caused SIGSEGV)

git-svn-id: http://svn.code.sf.net/p/retroshare/code/trunk@3613 b45a01b8-16f6-495d-af2f-9b41ad6348cc
This commit is contained in:
csoler 2010-10-05 15:49:28 +00:00
parent a90f332a40
commit 3c29434007

View File

@ -75,8 +75,7 @@ bdThread::bdThread()
void bdThread::join() /* waits for the the mTid thread to stop */
{
void *ptr;
pthread_join(mTid, &ptr);
pthread_join(mTid, NULL);
}
void bdThread::stop()