mirror of
https://github.com/RetroShare/RetroShare.git
synced 2025-06-20 12:24:24 -04:00
Fixed in Libresapi: Double declaration of StateToken in FileSharingHandler
This commit is contained in:
parent
575a416ee9
commit
67fc6a3c28
1 changed files with 2 additions and 2 deletions
|
@ -61,12 +61,12 @@ private:
|
||||||
StateToken mLocalDirStateToken;
|
StateToken mLocalDirStateToken;
|
||||||
|
|
||||||
/// Token indicating change in remote (friends') shared files
|
/// Token indicating change in remote (friends') shared files
|
||||||
StateToken mLocalDirStateToken;
|
StateToken mRemoteDirStateToken;
|
||||||
|
|
||||||
StateTokenServer* mStateTokenServer;
|
StateTokenServer* mStateTokenServer;
|
||||||
|
|
||||||
/**
|
/**
|
||||||
Protects mLocalDirStateToken and mLocalDirStateToken that may be changed in foreign thread
|
Protects mLocalDirStateToken and mRemoteDirStateToken that may be changed in foreign thread
|
||||||
@see FileSharingHandler::notifyListChange(...)
|
@see FileSharingHandler::notifyListChange(...)
|
||||||
*/
|
*/
|
||||||
RsMutex mMtx;
|
RsMutex mMtx;
|
||||||
|
|
Loading…
Add table
Add a link
Reference in a new issue