mirror of
https://gitlab.winehq.org/wine/wine-gecko.git
synced 2024-09-13 09:24:08 -07:00
Bug 990392: Make |sIsPairing| non-atomic, r=echou
|sIsPairing| is not a shared resource. No need to make it atomic.
This commit is contained in:
parent
14d910b481
commit
56e5764077
@ -306,7 +306,7 @@ static const int sWaitingForAdapterNameInterval = 1000; // unit: ms
|
||||
static StaticAutoPtr<RawDBusConnection> sDBusConnection;
|
||||
|
||||
// Keep the pairing requests.
|
||||
static Atomic<int32_t> sIsPairing(0);
|
||||
static unsigned int sIsPairing = 0;
|
||||
|
||||
static nsDataHashtable<nsStringHashKey, DBusMessage* >* sPairingReqTable;
|
||||
|
||||
|
Loading…
Reference in New Issue
Block a user