mirror of
https://github.com/RetroShare/RetroShare.git
synced 2024-12-19 04:44:21 -05:00
suppressed double mutex lock
git-svn-id: http://svn.code.sf.net/p/retroshare/code/trunk@840 b45a01b8-16f6-495d-af2f-9b41ad6348cc
This commit is contained in:
parent
5c9b0b5917
commit
d19f696278
@ -1130,7 +1130,10 @@ bool ftController::loadList(std::list<RsItem *> load)
|
|||||||
}
|
}
|
||||||
else if (NULL != (rsft = dynamic_cast<RsFileTransfer *>(*it)))
|
else if (NULL != (rsft = dynamic_cast<RsFileTransfer *>(*it)))
|
||||||
{
|
{
|
||||||
RsStackMutex stack(ctrlMutex); /******* LOCKED ********/
|
// csoler: I'm suppressing this lock since there is a double lock below
|
||||||
|
// in FileRequest, line 382.
|
||||||
|
// RsStackMutex stack(ctrlMutex); /******* LOCKED ********/
|
||||||
|
//
|
||||||
|
|
||||||
/* This will get stored on a waiting list - until the
|
/* This will get stored on a waiting list - until the
|
||||||
* config files are fully loaded
|
* config files are fully loaded
|
||||||
|
Loading…
Reference in New Issue
Block a user