mirror of
https://github.com/RetroShare/BitDHT.git
synced 2026-09-14 11:05:44 +05: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
6caf99820d
commit
053bfba60e
@ -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