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:
Thomas Zimmermann 2014-04-09 13:58:59 +02:00
Родитель 406133ad5e
Коммит 710a04c9cc
1 изменённых файлов: 1 добавлений и 1 удалений

Просмотреть файл

@ -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;