mirror of
https://github.com/RetroShare/RetroShare.git
synced 2024-10-01 02:35:48 -04:00
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:
parent
a90f332a40
commit
3c29434007
@ -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()
|
||||
|
Loading…
Reference in New Issue
Block a user