Loading netwerk/cookie/CookiePersistentStorage.cpp +4 −3 Original line number Diff line number Diff line Loading @@ -514,9 +514,10 @@ void CookiePersistentStorage::RemoveAllInternal() { } void CookiePersistentStorage::HandleCorruptDB() { COOKIE_LOGSTRING(LogLevel::Debug, ("HandleCorruptDB(): CookieStorage %p has mCorruptFlag %u", this, mCorruptFlag)); COOKIE_LOGSTRING( LogLevel::Debug, ("HandleCorruptDB(): CookieStorage %p has mCorruptFlag %u", this, static_cast<unsigned>(static_cast<CorruptFlag>(mCorruptFlag)))); // Mark the database corrupt, so the close listener can begin reconstructing // it. Loading netwerk/cookie/CookiePersistentStorage.h +1 −1 Original line number Diff line number Diff line Loading @@ -142,7 +142,7 @@ class CookiePersistentStorage final : public CookieStorage { nsCOMPtr<mozIStorageAsyncStatement> mStmtDelete; nsCOMPtr<mozIStorageAsyncStatement> mStmtUpdate; CorruptFlag mCorruptFlag; Atomic<CorruptFlag, Relaxed> mCorruptFlag; // Various parts representing asynchronous read state. These are useful // while the background read is taking place. Loading Loading
netwerk/cookie/CookiePersistentStorage.cpp +4 −3 Original line number Diff line number Diff line Loading @@ -514,9 +514,10 @@ void CookiePersistentStorage::RemoveAllInternal() { } void CookiePersistentStorage::HandleCorruptDB() { COOKIE_LOGSTRING(LogLevel::Debug, ("HandleCorruptDB(): CookieStorage %p has mCorruptFlag %u", this, mCorruptFlag)); COOKIE_LOGSTRING( LogLevel::Debug, ("HandleCorruptDB(): CookieStorage %p has mCorruptFlag %u", this, static_cast<unsigned>(static_cast<CorruptFlag>(mCorruptFlag)))); // Mark the database corrupt, so the close listener can begin reconstructing // it. Loading
netwerk/cookie/CookiePersistentStorage.h +1 −1 Original line number Diff line number Diff line Loading @@ -142,7 +142,7 @@ class CookiePersistentStorage final : public CookieStorage { nsCOMPtr<mozIStorageAsyncStatement> mStmtDelete; nsCOMPtr<mozIStorageAsyncStatement> mStmtUpdate; CorruptFlag mCorruptFlag; Atomic<CorruptFlag, Relaxed> mCorruptFlag; // Various parts representing asynchronous read state. These are useful // while the background read is taking place. Loading