Fixed in Libresapi: Double declaration of StateToken in FileSharingHandler

This commit is contained in:
Konrad 2018-01-06 19:29:56 +01:00
parent 575a416ee9
commit 67fc6a3c28

View File

@ -61,12 +61,12 @@ private:
StateToken mLocalDirStateToken;
/// Token indicating change in remote (friends') shared files
StateToken mLocalDirStateToken;
StateToken mRemoteDirStateToken;
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(...)
*/
RsMutex mMtx;